File tree 2 files changed +0
-9
lines changed
2 files changed +0
-9
lines changed Original file line number Diff line number Diff line change @@ -31,10 +31,6 @@ const getPodAddress = () => {
31
31
32
32
const getProxyLivenessUrl = ( ) => {
33
33
const podAddress = getPodAddress ( ) ;
34
- console . log (
35
- `Redis prefixes: ${ redisCache . getKeyPrefixes ( ) } - ${ redisCache . getKeyPrefixes ( ) . join ( ',' ) } `
36
- ) ;
37
-
38
34
return podAddress
39
35
? `${ REVALIDATOR_PROXY_ORIGIN } /liveness${ objectToQueryString ( {
40
36
address : podAddress ,
@@ -66,8 +62,6 @@ export const initRevalidatorProxyHeartbeat = () => {
66
62
return ;
67
63
}
68
64
69
- console . log ( `Heartbeat url: ${ url } ` ) ;
70
-
71
65
fetch ( url , {
72
66
headers : { secret : SERVICE_SECRET } ,
73
67
} ) . catch ( ( e ) => logger . error ( `Failed to send heartbeat signal - ${ e } ` ) ) ;
Original file line number Diff line number Diff line change @@ -56,7 +56,6 @@ class RedisCacheImpl {
56
56
}
57
57
58
58
public async init ( buildId : string , decoratorVersionId : string ) {
59
- console . log ( `Initing with ${ buildId } ${ decoratorVersionId } ` ) ;
60
59
this . buildId = buildId ;
61
60
this . updateRenderCacheKeyPrefix ( decoratorVersionId ) ;
62
61
@@ -73,9 +72,7 @@ class RedisCacheImpl {
73
72
}
74
73
75
74
public updateRenderCacheKeyPrefix ( decoratorVersionId : string ) {
76
- console . log ( `Setting prefix ${ this . renderCacheKeyPrefix } ` ) ;
77
75
this . renderCacheKeyPrefix = `${ process . env . ENV } :render:${ this . buildId } :${ decoratorVersionId } ` ;
78
- console . log ( `Set prefix ${ this . renderCacheKeyPrefix } ` ) ;
79
76
}
80
77
81
78
public async getRender ( key : string ) {
You can’t perform that action at this time.
0 commit comments