This commit is contained in:
William Will 2025-08-19 11:21:02 -06:00
parent 58e2e607e5
commit a273f6087d
3 changed files with 18 additions and 20 deletions

View File

@ -2,9 +2,9 @@ package options
type AWSIAMConfig struct { type AWSIAMConfig struct {
// AWS service redis service being used. "elasticache" or "memorydb" // AWS service redis service being used. "elasticache" or "memorydb"
ServiceName string `json:"serviceName,omitempty` ServiceName string `json:"serviceName,omitempty"`
// AWS Cluster name // AWS Cluster name
ClusterName string `json:"clusterName,omitempty` ClusterName string `json:"clusterName,omitempty"`
// AWS Username // AWS Username
Username string `json:"userName,omitempty` Username string `json:"userName,omitempty"`
} }

View File

@ -284,8 +284,7 @@ var _ = Describe("Redis SessionStore Tests", func() {
}, },
} }
var opt *redis.Options var opt = &redis.Options{}
opt = &redis.Options{}
err := setupAWSIAMAuth(redisOpts, opt) err := setupAWSIAMAuth(redisOpts, opt)
Expect(err).ToNot(HaveOccurred()) Expect(err).ToNot(HaveOccurred())
@ -300,8 +299,7 @@ var _ = Describe("Redis SessionStore Tests", func() {
AWSIAMConfig: nil, AWSIAMConfig: nil,
} }
var opt *redis.Options var opt = &redis.Options{}
opt = &redis.Options{}
err := setupAWSIAMAuth(redisOpts, opt) err := setupAWSIAMAuth(redisOpts, opt)
Expect(err).ToNot(HaveOccurred()) Expect(err).ToNot(HaveOccurred())