File tree 1 file changed +0
-5
lines changed
1 file changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -14,9 +14,6 @@ const logger = winston.createLogger({
14
14
CacheHandler . onCreation ( async ( ) => {
15
15
let client ;
16
16
17
- console . info ( "VALKEY_URI_STILLINGSOK: " , ! ! process . env . VALKEY_URI_STILLINGSOK ) ;
18
- console . info ( "VALKEY_USERNAME_STILLINGSOK: " , ! ! process . env . VALKEY_USERNAME_STILLINGSOK ) ;
19
- console . info ( "VALKEY_PASSWORD_STILLINGSOK: " , ! ! process . env . VALKEY_PASSWORD_STILLINGSOK ) ;
20
17
try {
21
18
client = createClient ( {
22
19
url : process . env . VALKEY_URI_STILLINGSOK ?? "redis://localhost:6379" ,
@@ -31,7 +28,6 @@ CacheHandler.onCreation(async () => {
31
28
logger . error ( "Failed to create Valkey client:" , error ) ;
32
29
}
33
30
34
- console . info ( "VALKEY_AVAILABLE: " , process . env . VALKEY_AVAILABLE ) ;
35
31
if ( process . env . VALKEY_AVAILABLE && client ) {
36
32
try {
37
33
logger . info ( "Connecting Valkey client..." ) ;
@@ -59,7 +55,6 @@ CacheHandler.onCreation(async () => {
59
55
60
56
let handler ;
61
57
62
- console . info ( "client?.isReady: " , client ?. isReady ) ;
63
58
if ( client ?. isReady ) {
64
59
// Create the `redis-stack` Handler if the client is available and connected.
65
60
handler = await createRedisHandler ( {
You can’t perform that action at this time.
0 commit comments