Merge pull request #30 from timothyjlaurent/fix/sqlite-corruption-wal-pragmas
fix: prevent SQLite B-tree corruption with WAL tuning and batched agent logs
This commit is contained in:
@@ -1123,7 +1123,7 @@ describe("SettingsModal", () => {
|
||||
extension: { status: "ok" },
|
||||
ready: true,
|
||||
},
|
||||
expectedText: "✓ Connected — 1.2.3",
|
||||
expectedText: "✓ Active",
|
||||
},
|
||||
])("renders plugin-driven droid card state: $name", async ({ status, expectedText }) => {
|
||||
mockFetchAuthStatus.mockResolvedValueOnce({
|
||||
|
||||
@@ -14,20 +14,20 @@ import {
|
||||
|
||||
function createRemoteSettings(overrides: Partial<RemoteAccessProjectSettings> = {}): RemoteAccessProjectSettings {
|
||||
return {
|
||||
activeProvider: "tailscale",
|
||||
activeProvider: "cloudflare",
|
||||
providers: {
|
||||
tailscale: {
|
||||
enabled: true,
|
||||
hostname: "tail.example.ts.net",
|
||||
enabled: false,
|
||||
hostname: "",
|
||||
targetPort: 4040,
|
||||
acceptRoutes: false,
|
||||
},
|
||||
cloudflare: {
|
||||
enabled: false,
|
||||
enabled: true,
|
||||
quickTunnel: false,
|
||||
tunnelName: "",
|
||||
tunnelToken: null,
|
||||
ingressUrl: "",
|
||||
ingressUrl: "https://demo.trycloudflare.com",
|
||||
},
|
||||
},
|
||||
tokenStrategy: {
|
||||
|
||||
Reference in New Issue
Block a user