From dbed0e94cb79f338a3980e54aa37f668316417ad Mon Sep 17 00:00:00 2001 From: Vitaliy Filippov Date: Sat, 18 Apr 2026 14:40:50 +0300 Subject: [PATCH] Try to run tests with AES-GCM --- tests/common.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/common.sh b/tests/common.sh index 0ffba510..cde05510 100644 --- a/tests/common.sh +++ b/tests/common.sh @@ -142,6 +142,7 @@ if [[ "$OSD_TLS" = "1" ]]; then VITASTOR_CFG="$VITASTOR_CFG"',"tls_cert":"'$(pwd)'/testdata/cli.crt"' VITASTOR_CFG="$VITASTOR_CFG"',"tls_key":"'$(pwd)'/testdata/cli.key"' fi +VITASTOR_CFG="$VITASTOR_CFG"',"test_osd_aes_key":"'$(openssl rand -hex 32)'"' echo "{$VITASTOR_CFG}" > ./testdata/vitastor.conf VITASTOR_CFG=./testdata/vitastor.conf VITASTOR_CLI="build/src/cmd/vitastor-cli --config_path $VITASTOR_CFG"