Skip to content

Commit

Permalink
Remove secrets leak
Browse files Browse the repository at this point in the history
  • Loading branch information
Dzejkop committed Dec 5, 2023
1 parent 1852855 commit aec0893
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/db.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,6 @@ impl Database {
pub async fn new(config: &DatabaseConfig) -> eyre::Result<Self> {
let connection_string = config.to_connection_string();

// TODO: Remove this!
tracing::info!("Connecting to database: {}", connection_string);

let pool = loop {
if !Postgres::database_exists(&connection_string).await? {
Postgres::create_database(&connection_string).await?;
Expand Down

0 comments on commit aec0893

Please sign in to comment.