Skip to content

Commit 8c272c0

Browse files
committed
Ref #33873: use http check for health of a DelegateProxy
1 parent 84dd61e commit 8c272c0

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/main/java/eu/openanalytics/containerproxy/backend/dispatcher/proxysharing/ProxySharingDispatcher.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,8 @@ public Proxy addRuntimeValuesAfterSpel(Authentication user, ProxySpec spec, Prox
225225

226226
@Override
227227
public boolean isProxyHealthy(Proxy proxy) {
228-
return false; // TODO
228+
// do not check container status, it will fallback to HTTP check
229+
return true;
229230
}
230231

231232
@EventListener

0 commit comments

Comments
 (0)