We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad769a8 commit 3e99a4cCopy full SHA for 3e99a4c
2 files changed
Cargo.toml
@@ -9,7 +9,7 @@ members = [
9
]
10
11
[workspace.package]
12
-version = "0.34.3"
+version = "0.34.4"
13
14
15
[workspace.lints.clippy]
opsqueue/src/db/mod.rs
@@ -256,7 +256,7 @@ impl DBPools {
256
}
257
258
pub async fn periodically_checkpoint_wal(&self) {
259
- const EXPLICIT_WAL_CHECK_INTERVAL: Duration = Duration::from_secs(1);
+ const EXPLICIT_WAL_CHECK_INTERVAL: Duration = Duration::from_millis(100);
260
let mut interval = tokio::time::interval(EXPLICIT_WAL_CHECK_INTERVAL);
261
loop {
262
let _ = self.perform_explicit_wal_checkpoint().await;
0 commit comments