File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -575,6 +575,7 @@ where
575575 & mut task_manager,
576576 scheduler_sender. into ( ) ,
577577 scripted_backup,
578+ meta_store. clone ( ) ,
578579 )
579580 . await ?;
580581
@@ -753,6 +754,7 @@ where
753754 task_manager : & mut TaskManager ,
754755 migration_scheduler_handle : SchedulerHandle ,
755756 scripted_backup : Option < ScriptBackupManager > ,
757+ meta_store : MetaStore ,
756758 ) -> anyhow:: Result < ( NamespaceConfigurators , MakeReplicationSvc ) > {
757759 let wal_path = base_config. base_path . join ( "wals" ) ;
758760 let enable_libsql_wal_test = {
@@ -784,6 +786,7 @@ where
784786 migration_scheduler_handle,
785787 scripted_backup,
786788 wal_path,
789+ meta_store,
787790 )
788791 . await
789792 }
@@ -814,6 +817,7 @@ where
814817 migration_scheduler_handle : SchedulerHandle ,
815818 scripted_backup : Option < ScriptBackupManager > ,
816819 wal_path : PathBuf ,
820+ meta_store : MetaStore ,
817821 ) -> anyhow:: Result < ( NamespaceConfigurators , MakeReplicationSvc ) > {
818822 tracing:: info!( "using libsql wal" ) ;
819823 let ( sender, receiver) = tokio:: sync:: mpsc:: channel ( 64 ) ;
You can’t perform that action at this time.
0 commit comments