From c41e70587a5b065f81c4f4fe88da6a6ee1e6abb2 Mon Sep 17 00:00:00 2001 From: Quinn Klassen Date: Thu, 21 Nov 2024 09:39:57 -0800 Subject: [PATCH] Try james settings --- internal/cmd/build/main.go | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/internal/cmd/build/main.go b/internal/cmd/build/main.go index 500d25ab6..e9e76a818 100644 --- a/internal/cmd/build/main.go +++ b/internal/cmd/build/main.go @@ -141,9 +141,10 @@ func (b *builder) integrationTest() error { Namespace: "integration-test-namespace", }, CachedDownload: testsuite.CachedDownload{ - Version: "v1.1.0", + Version: "v1.1.1", }, - LogLevel: "warn", + LogLevel: "warn", + DBFilename: "temporal.sqlite", ExtraArgs: []string{ "--dynamic-config-value", "frontend.enableExecuteMultiOperation=true", "--dynamic-config-value", "frontend.enableUpdateWorkflowExecution=true", @@ -161,6 +162,8 @@ func (b *builder) integrationTest() error { "--dynamic-config-value", "system.enableNexus=true", // SDK tests use arbitrary callback URLs, permit that on the server. "--dynamic-config-value", `component.callbacks.allowedAddresses=[{"Pattern":"*","AllowInsecure":true}]`, + "--sqlite-pragma", "journal_mode=WAL", + "--sqlite-pragma", "synchronous=OFF", }, }) if err != nil {