Commit 96bfaca
Kevin Hopper
Switch SQLite to WAL mode and increase busy_timeout to 30s
WAL (Write-Ahead Logging) allows concurrent readers alongside
a single writer, eliminating SQLITE_BUSY errors in multi-process
deployments (gateway + MCP servers + Claude Code). Previously
used delete journal mode where any writer blocked all readers.
busy_timeout increased from 5s to 30s as a safety net for the
rare case where write contention still occurs under WAL.1 parent 1c60b51 commit 96bfaca
1 file changed
+4
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
127 | 127 | | |
128 | 128 | | |
129 | 129 | | |
130 | | - | |
| 130 | + | |
| 131 | + | |
| 132 | + | |
| 133 | + | |
131 | 134 | | |
132 | 135 | | |
133 | 136 | | |
| |||
0 commit comments