From aab2c8b857e03bd4c136f995272f65cc1964e91e Mon Sep 17 00:00:00 2001 From: nicktrn <55853254+nicktrn@users.noreply.github.com> Date: Tue, 3 Oct 2023 09:40:20 +0000 Subject: [PATCH] Link to migration docs --- apps/webapp/app/entry.server.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/webapp/app/entry.server.tsx b/apps/webapp/app/entry.server.tsx index 9e3f2c3fb..6ed9e2a3f 100644 --- a/apps/webapp/app/entry.server.tsx +++ b/apps/webapp/app/entry.server.tsx @@ -168,7 +168,8 @@ function logError(error: unknown, request?: Request) { console.error(error); if (error instanceof Error && error.message === "division by zero") { - console.log("⚠️ Possible graphile-worker migration issue detected") - console.log("⚠️ Set FAIL_LOCKED_JOBS_FOR_MIGRATION=true if this persists") + console.log("⚠️ possible graphile-worker migration issue detected"); + console.log("⚠️ set FAIL_LOCKED_JOBS_FOR_MIGRATION=true if this persists"); + console.log("⚠️ see: https://trigger.dev/docs/documentation/guides/self-hosting/graphile-migration"); } }