We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4bbfda4 commit 415df4dCopy full SHA for 415df4d
2 files changed
libsql-server/src/lib.rs
@@ -191,9 +191,11 @@ where
191
}
192
193
194
+#[tracing::instrument(skip(connection_maker))]
195
async fn run_periodic_checkpoint<C>(
196
connection_maker: Arc<C>,
197
period: Duration,
198
+ namespace_name: NamespaceName,
199
) -> anyhow::Result<()>
200
where
201
C: MakeConnection,
libsql-server/src/namespace/mod.rs
@@ -440,6 +440,7 @@ impl Namespace {
440
join_set.spawn(run_periodic_checkpoint(
441
connection_maker.clone(),
442
checkpoint_interval,
443
+ name.clone(),
444
));
445
446
0 commit comments