14 lines
522 B
Go
14 lines
522 B
Go
package harness
|
|
|
|
// AuthsessionRedisEnv returns the env-var map that wires the authsession
|
|
// 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 AuthsessionRedisEnv(masterAddr string) map[string]string {
|
|
return map[string]string{
|
|
"AUTHSESSION_REDIS_MASTER_ADDR": masterAddr,
|
|
"AUTHSESSION_REDIS_PASSWORD": "integration",
|
|
}
|
|
}
|