From d40893ddbe4ae0c9d11e1242bd55532a71d2f236 Mon Sep 17 00:00:00 2001 From: Jacob Thompson Date: Wed, 27 Nov 2024 04:49:17 -0800 Subject: [PATCH] fix incorrect error log current behavior is to log that the Redis Cloud URL has been set despite the opposite being the case --- libraries/redis/redis.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/redis/redis.go b/libraries/redis/redis.go index 34830e1..2e0cc89 100644 --- a/libraries/redis/redis.go +++ b/libraries/redis/redis.go @@ -18,7 +18,7 @@ func Init() { redisURL := os.Getenv("REDISCLOUD_URL") if redisURL == "" { - log.Fatalln("Redis Cloud URL has been set") + log.Fatalln("Redis Cloud URL has not been set") return }