We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 944b905 commit d59a340Copy full SHA for d59a340
libsql-server/src/connection/connection_manager.rs
@@ -204,6 +204,8 @@ impl ManagedConnectionWalWrapper {
204
}
205
_ => {}
206
207
+ // note, that it's important that we return SQLITE_BUSY error for CHECKPOINT starvation problem before that condition
208
+ // because after we will add something to the write_queue - we can't easily abort execution of acquire() method
209
if current.as_mut().map_or(true, |slot| slot.id != self.id) && !enqueued {
210
self.manager
211
.write_queue
0 commit comments