Skip to content

Commit

Permalink
health: fix up env var
Browse files Browse the repository at this point in the history
  • Loading branch information
mimecuvalo committed Nov 3, 2023
1 parent 1e83285 commit 10fc4a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/clientHealthCheck.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ async function runCheck() {
'/api/client-health-check?' +
new URLSearchParams({
buildId: process.env.BUILD_ID || '',
commitSHA: process.env.NEXT_PUBLIC_VERCEL_GITHUB_COMMIT_SHA || '',
commitSHA: process.env.VERCEL_GIT_COMMIT_SHA || '',
});
const response = await fetch(url);
const data = await response.text();
Expand Down

0 comments on commit 10fc4a6

Please sign in to comment.