Skip to content

Commit

Permalink
Update main.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
thorrester committed Jul 22, 2024
1 parent 1aeaf2e commit 407d0e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ async fn start_main_server() -> Result<(), anyhow::Error> {
.with_context(|| "Failed to create Postgres client")?;

// run migrations
let _migration = sqlx::migrate!().run(&pool).await?;
sqlx::migrate!().run(&pool).await?;

// setup background task if kafka is enabled
if std::env::var("KAFKA_BROKERS").is_ok() {
Expand Down

0 comments on commit 407d0e7

Please sign in to comment.