From 185e9b898216b0f9076a0780de0b9686d69f6975 Mon Sep 17 00:00:00 2001 From: Karol Wypchlo Date: Fri, 14 Jan 2022 10:54:24 +0100 Subject: [PATCH] rethrow unhandled exception --- packages/health-check/src/utils.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/health-check/src/utils.js b/packages/health-check/src/utils.js index 595fbb1e..7e5b09b8 100644 --- a/packages/health-check/src/utils.js +++ b/packages/health-check/src/utils.js @@ -85,6 +85,9 @@ function getAuthCookie() { // retry authentication return authenticate(); } + + // rethrow unhandled exception + throw error; } }