Skip to content

Commit 4636e04

Browse files
committed
Throw Exception when hash of config cannot be computed
1 parent 421d61d commit 4636e04

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/eu/openanalytics/containerproxy/backend/kubernetes/KubernetesBackend.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ public void initialize() throws ContainerProxyException {
141141
try {
142142
log.info("Hash of config is: " + getInstanceId());
143143
} catch(Exception e) {
144-
e.printStackTrace();
144+
throw new RuntimeException("Cannot compute hash of config", e);
145145
}
146146
}
147147

0 commit comments

Comments
 (0)