Skip to content

Commit 8f0219d

Browse files
committed
widen info state hashing catch
1 parent d4d2069 commit 8f0219d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

communication/src/main/java/datadog/communication/ddagent/DDAgentFeaturesDiscovery.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ private boolean processInfoResponse(State newState, String response) {
311311
}
312312
try {
313313
newState.state = Strings.sha256(response);
314-
} catch (NoSuchAlgorithmException ex) {
314+
} catch (Throwable ex) {
315315
log.debug(
316316
"Failed to hash trace agent /info response. Will probe {}", newState.traceEndpoint, ex);
317317
}

0 commit comments

Comments
 (0)