Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix canary only warning for devlow-bench #76772

Merged
merged 1 commit into from
Mar 3, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion scripts/devlow-bench.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ const nextBuildWorkflow =
PWD: process.env.PWD,
NEXT_TRACE_UPLOAD_DISABLED: 'true',
NEXT_PRIVATE_SKIP_CANARY_CHECK: 'true',
// Enable next.js test mode to get HMR events and silence canary only
__NEXT_TEST_MODE: '1',
}

const serverEnv = {
Expand Down Expand Up @@ -253,7 +255,7 @@ const nextDevWorkflow =
NEXT_PUBLIC_OTEL_SENTRY: 'true',
NEXT_PUBLIC_OTEL_DEV_DISABLED: 'true',
NEXT_TRACE_UPLOAD_DISABLED: 'true',
// Enable next.js test mode to get HMR events
// Enable next.js test mode to get HMR events and silence canary only
__NEXT_TEST_MODE: '1',
}

Expand Down
Loading