summaryrefslogtreecommitdiffstats
path: root/node-admin
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@oath.com>2018-05-14 13:20:22 +0200
committerBjørn Christian Seime <bjorncs@oath.com>2018-05-14 17:05:30 +0200
commit4f29ae28d6d8da4683fefb22e3012750b0487935 (patch)
tree4edb7bc98867cacf2f1106a852668815d9dbecf8 /node-admin
parentf3a3eb852d27ea4a84acfd6258d370bdc2f2effe (diff)
Don't ignore exception
Diffstat (limited to 'node-admin')
-rw-r--r--node-admin/src/main/java/com/yahoo/vespa/hosted/node/admin/maintenance/identity/AthenzCredentialsMaintainer.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/node-admin/src/main/java/com/yahoo/vespa/hosted/node/admin/maintenance/identity/AthenzCredentialsMaintainer.java b/node-admin/src/main/java/com/yahoo/vespa/hosted/node/admin/maintenance/identity/AthenzCredentialsMaintainer.java
index 84f41a3e25b..869e59d890b 100644
--- a/node-admin/src/main/java/com/yahoo/vespa/hosted/node/admin/maintenance/identity/AthenzCredentialsMaintainer.java
+++ b/node-admin/src/main/java/com/yahoo/vespa/hosted/node/admin/maintenance/identity/AthenzCredentialsMaintainer.java
@@ -198,6 +198,7 @@ public class AthenzCredentialsMaintainer {
throw new UncheckedIOException(e);
} catch (Exception e) {
// TODO Change close() in ZtsClient to not throw checked exception
+ throw new RuntimeException(e);
}
}
@@ -223,6 +224,7 @@ public class AthenzCredentialsMaintainer {
throw new UncheckedIOException(e);
} catch (Exception e) {
// TODO Change close() in ZtsClient to not throw checked exception
+ throw new RuntimeException(e);
}
}