We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55c45ab commit 47361ffCopy full SHA for 47361ff
apps/supervisor/src/services/failedPodHandler.ts
@@ -283,6 +283,14 @@ export class FailedPodHandler {
283
// Reconnect on errors
284
await setTimeout(this.reconnectIntervalMs);
285
await this.informer.start();
286
+ } catch (handlerError) {
287
+ const error = handlerError instanceof Error ? handlerError : undefined;
288
+ this.logger.error("onError: reconnection attempt failed", {
289
+ informerName,
290
+ error: error?.message,
291
+ errorType: error?.name,
292
+ errorStack: error?.stack,
293
+ });
294
} finally {
295
this.reconnecting = false;
296
}
0 commit comments