We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b58158f commit 190e509Copy full SHA for 190e509
src/main/java/eu/openanalytics/containerproxy/backend/dispatcher/proxysharing/ProxySharingScaler.java
@@ -646,6 +646,12 @@ public Long getNumClaimedSeats() {
646
}
647
648
public void stopAll() {
649
+ executor.shutdown();
650
+ try {
651
+ executor.awaitTermination(3, TimeUnit.MINUTES);
652
+ } catch (InterruptedException e) {
653
+ throw new RuntimeException(e);
654
+ }
655
for (DelegateProxy delegateProxy : delegateProxyStore.getAllDelegateProxies()) {
656
containerBackend.stopProxy(delegateProxy.getProxy());
657
0 commit comments