From 32dfcb3da9b55425d47a88a18fc0cba6d647e08b Mon Sep 17 00:00:00 2001 From: atakavci Date: Mon, 17 Mar 2025 17:27:32 +0300 Subject: [PATCH 1/2] bump redis 8.0 version --- .github/workflows/integration.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 4f56e25e..12fe2741 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -37,7 +37,7 @@ jobs: max-parallel: 15 fail-fast: false matrix: - redis-version: [ '8.0-M04-pre', '${{ needs.redis_version.outputs.CURRENT }}', '7.2.6', '6.2.16'] + redis-version: [ '8.0-M05-pre', '${{ needs.redis_version.outputs.CURRENT }}', '7.2.6', '6.2.16'] dotnet-version: ['6.0', '7.0', '8.0'] env: ACTIONS_ALLOW_UNSECURE_COMMANDS: true From 8cadd13e655ced4686e577ba71c7a2bb48737b75 Mon Sep 17 00:00:00 2001 From: atakavci Date: Thu, 20 Mar 2025 10:20:00 +0300 Subject: [PATCH 2/2] "--tls-cluster yes" for cluster setup --- tests/dockers/docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/dockers/docker-compose.yml b/tests/dockers/docker-compose.yml index f4e0436e..98ef921e 100644 --- a/tests/dockers/docker-compose.yml +++ b/tests/dockers/docker-compose.yml @@ -30,7 +30,7 @@ services: - TLS_ENABLED=yes - PORT=16379 - TLS_PORT=27379 - command: ${REDIS_EXTRA_ARGS:---enable-debug-command yes --enable-module-command yes --tls-auth-clients optional --save "" --cluster-announce-ip 127.0.0.1} + command: ${REDIS_EXTRA_ARGS:---enable-debug-command yes --enable-module-command yes --tls-cluster yes --tls-auth-clients optional --save "" --cluster-announce-ip 127.0.0.1} ports: - "16379-16384:16379-16384" - "27379-27384:27379-27384"