Skip to content

Commit fb7beb9

Browse files
remove duplicate httpGet in health check
1 parent c1b25db commit fb7beb9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

assets/js/hubsetup.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -669,10 +669,10 @@ class KubernetesConfigBuilder extends ConfigBuilder {
669669
httpGet: {path: '/q/health/started', port: 8080},
670670
},
671671
livenessProbe: {
672-
httpGet: {path: '/api/config', port: 8080}, httpGet: {path: '/api/config', port: 8080}, initialDelaySeconds: 10, periodSeconds: 3
672+
httpGet: {path: '/api/config', port: 8080}, initialDelaySeconds: 10, periodSeconds: 3
673673
},
674674
readinessProbe: {
675-
httpGet: {path: '/q/health/ready', port: 8080}, httpGet: {path: '/api/config', port: 8080}, initialDelaySeconds: 10, periodSeconds: 3
675+
httpGet: {path: '/api/config', port: 8080}, initialDelaySeconds: 10, periodSeconds: 3
676676
},
677677
env: [
678678
{name: 'HUB_PUBLIC_ROOT_PATH', value: this.getPathnameWithTrailingSlash(this.cfg.hub.publicUrl)},

0 commit comments

Comments
 (0)