Always log unhandled exception on download (#2577)

This commit is contained in:
Stanislav Trailov
2025-08-01 08:47:02 +03:00
committed by GitHub
parent 737c6bddc3
commit 107ebca740

View File

@@ -89,6 +89,8 @@ public interface UpdateHandler {
if (updateStatus.status() != UpdateStatus.Status.FAILURE && updateType != DdiDeployment.HandlingType.SKIP) {
ddiController.sendFeedback(update());
}
} catch (final Exception ex) {
log.error("Failed to download artifact. Reason : ", ex);
} finally {
cleanup();
}