Skip to content

Commit 4c088f2

Browse files
committed
Fix standalone main tyck
1 parent ba27106 commit 4c088f2

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

crates/standalone/src/main.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,5 +76,6 @@ fn main() -> anyhow::Result<()> {
7676
cores.tokio.configure(&mut builder);
7777
let rt = builder.build().unwrap();
7878
cores.rayon.configure(rt.handle());
79-
rt.block_on(async_main(cores.databases))
79+
let database_cores = cores.databases.make_database_runners(rt.handle());
80+
rt.block_on(async_main(database_cores))
8081
}

0 commit comments

Comments
 (0)