fix(2): Q4.2 mumble — set sqlite busy timeout via silent .timeout dot-command, not PRAGMA
PRAGMA busy_timeout=N emits its own result row, polluting the read-back parse (seed read back '20000\nupgrade-survives' → AssertionError 'seed did not commit', failing upgrade/backup/restore ops — though the INSERT actually committed). Switch _sqlite to 'sqlite3 -cmd ".timeout 20000"' which sets the busy timeout silently. install+custom already green (handshake/welcome/web/tcp PASS); this fixes the P4 lifecycle ops. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
@ -22,7 +22,9 @@ DB = "/data/mumble-server.sqlite"
|
||||
|
||||
|
||||
def _sqlite(domain, sql):
|
||||
cmd = f'sqlite3 {DB} "PRAGMA busy_timeout=20000; {sql}"'
|
||||
# Set the busy timeout via the SILENT `.timeout` dot-command (-cmd), NOT an inline
|
||||
# `PRAGMA busy_timeout=...` (which emits its own result row and would pollute read-backs).
|
||||
cmd = f'sqlite3 -cmd ".timeout 20000" {DB} "{sql}"'
|
||||
return lifecycle.exec_in_app(domain, ["sh", "-c", cmd], service="app").strip()
|
||||
|
||||
|
||||
|
||||
@ -16,7 +16,9 @@ DB = "/data/mumble-server.sqlite"
|
||||
|
||||
|
||||
def _sqlite(domain, sql):
|
||||
cmd = f'sqlite3 {DB} "PRAGMA busy_timeout=20000; {sql}"'
|
||||
# Set the busy timeout via the SILENT `.timeout` dot-command (-cmd), NOT an inline
|
||||
# `PRAGMA busy_timeout=...` (which emits its own result row and would pollute read-backs).
|
||||
cmd = f'sqlite3 -cmd ".timeout 20000" {DB} "{sql}"'
|
||||
return lifecycle.exec_in_app(domain, ["sh", "-c", cmd], service="app").strip()
|
||||
|
||||
|
||||
|
||||
@ -18,7 +18,9 @@ DB = "/data/mumble-server.sqlite"
|
||||
|
||||
|
||||
def _sqlite(domain, sql):
|
||||
cmd = f'sqlite3 {DB} "PRAGMA busy_timeout=20000; {sql}"'
|
||||
# Set the busy timeout via the SILENT `.timeout` dot-command (-cmd), NOT an inline
|
||||
# `PRAGMA busy_timeout=...` (which emits its own result row and would pollute read-backs).
|
||||
cmd = f'sqlite3 -cmd ".timeout 20000" {DB} "{sql}"'
|
||||
return lifecycle.exec_in_app(domain, ["sh", "-c", cmd], service="app").strip()
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user