From 4e35f5402ccca3246ce2302b29ca2f8c283f3361 Mon Sep 17 00:00:00 2001 From: Dave Richer Date: Fri, 27 Sep 2024 15:06:52 -0400 Subject: [PATCH] feature/IO-2967-Better-Refetch-Handling - Add note to server.js Signed-off-by: Dave Richer --- server.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server.js b/server.js index 2b3f8b06b..64e735cbd 100644 --- a/server.js +++ b/server.js @@ -216,4 +216,6 @@ main().catch((error) => { error: error.message, errorjson: JSON.stringify(error) }); + // Note: If we want the app to crash on all uncaught async operations, we would + // need to put a `process.exit(1);` here });