Skip to content

Commit

Permalink
chore: fix missing wals for no meta mode
Browse files Browse the repository at this point in the history
  • Loading branch information
ShiKaiWi committed Mar 7, 2023
1 parent 30b697d commit 39e571a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/setup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ async fn build_without_meta<Q: Executor + 'static, T: WalsOpener>(
config: &config.analytic,
router: None,
engine_runtimes: runtimes.clone(),
opened_wals,
opened_wals: opened_wals.clone(),
};
let engine_proxy = build_table_engine_proxy(engine_builder).await;

Expand Down Expand Up @@ -314,6 +314,7 @@ async fn build_without_meta<Q: Executor + 'static, T: WalsOpener>(
.catalog_manager(catalog_manager)
.table_manipulator(table_manipulator)
.router(router)
.opened_wals(opened_wals)
.schema_config_provider(schema_config_provider)
.local_tables_recoverer(local_tables_recoverer)
}
Expand Down

0 comments on commit 39e571a

Please sign in to comment.