From c245e162cabb1ae2445cd9542319e3ae84313bbd Mon Sep 17 00:00:00 2001 From: ionutboangiu Date: Tue, 4 Nov 2025 13:52:33 +0200 Subject: [PATCH] default to no internal storage for test suite --- engine/libtest.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/engine/libtest.go b/engine/libtest.go index 9a58f3965..b8055ae63 100644 --- a/engine/libtest.go +++ b/engine/libtest.go @@ -438,6 +438,7 @@ type Item struct { type DBParams struct { DBConns map[string]DBConn `json:"db_conns,omitempty"` Items map[string]Item `json:"items,omitempty"` + Opts map[string]any `json:"opts"` } // DBCfg holds the configurations for data_db and/or stor_db. @@ -739,6 +740,10 @@ var ( Type: utils.StringPointer(utils.MetaInternal), }, }, + Opts: map[string]any{ + utils.InternalDBDumpIntervalCfg: "0s", + utils.InternalDBRewriteIntervalCfg: "0s", + }, }, } MySQLDBCfg = DBCfg{