diff options
Diffstat (limited to 'server/src/main.rs')
-rw-r--r-- | server/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/main.rs b/server/src/main.rs index c0ec4cb..9034b67 100644 --- a/server/src/main.rs +++ b/server/src/main.rs @@ -61,7 +61,7 @@ async fn create_authenticator( async fn create_authenticator( db_pool: &PgPool, ) -> Box<dyn Authenticator + Send + Sync> { - create_default_authenticator(db_pool) + create_default_authenticator(db_pool).await } #[tokio::main] |