reduce number of environment variables needed in production
1 file changed, 2 insertions(+), 3 deletions(-)
changed files
M internal/events/redis.go → internal/events/redis.go
@@ -18,11 +18,10 @@ const key = "run_id" const fallbackRunID uint64 = 210 type RedisOptions struct { - Enabled bool `conf:"default:false"` - Address string `conf:"default:localhost:6379"` + Address string Username string `conf:"default:default"` Password string `conf:"default:default"` - TLSEnabled bool `conf:"default:false"` + TLSEnabled bool `conf:"default:true"` } type Logger struct {