Files
galaxy-game/integration/internal/harness/gatewayservice.go
T
2026-04-26 20:34:39 +02:00

13 lines
499 B
Go

package harness
// GatewayRedisEnv returns the env-var map that wires the gateway binary to a
// Redis master at masterAddr using the master/replica/password shape required
// by `pkg/redisconn`. The integration suites pass a fixed placeholder
// password because the test Redis container runs without `requirepass`.
func GatewayRedisEnv(masterAddr string) map[string]string {
return map[string]string{
"GATEWAY_REDIS_MASTER_ADDR": masterAddr,
"GATEWAY_REDIS_PASSWORD": "integration",
}
}