From 49b598d087aa05813b1e616a77bd995a2e513d4e Mon Sep 17 00:00:00 2001 From: Patrick Evans <31580846+holysoles@users.noreply.github.com> Date: Mon, 12 May 2025 12:30:04 +0000 Subject: [PATCH] tests: create redis sentinel config with permissive perms --- integration/redis_sentinel_test.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/integration/redis_sentinel_test.go b/integration/redis_sentinel_test.go index 2dfc1d72f..6b452c0f9 100644 --- a/integration/redis_sentinel_test.go +++ b/integration/redis_sentinel_test.go @@ -92,6 +92,9 @@ func (s *RedisSentinelSuite) setupSentinelConfiguration(ports []string) { require.NoError(s.T(), err) defer tmpFile.Close() + err = tmpFile.Chmod(0o666) + require.NoError(s.T(), err) + model := structs.Map(templateValue) model["SelfFilename"] = tmpFile.Name()