summaryrefslogtreecommitdiff
path: root/server/src/main.rs
diff options
context:
space:
mode:
authorKjetil Orbekk <kj@orbekk.com>2022-12-27 19:55:10 -0500
committerKjetil Orbekk <kj@orbekk.com>2022-12-27 19:58:45 -0500
commit21b7b57336cd3bf7bd328ada38c6069a48504f85 (patch)
treec0d47337f584403febcfc9ec365ea1ea810e782e /server/src/main.rs
parent3418ebf4db2375e0dfe2343da57d674e1f4fd57f (diff)
`cargo fmt`
Diffstat (limited to 'server/src/main.rs')
-rw-r--r--server/src/main.rs2
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]