Skip to content

Commit f40e48e

Browse files
committed
Fix auth error status code: 503 -> 403 for missing credentials
1 parent ab328b6 commit f40e48e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/plugins/apps/src/vite/dev-server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ export function createDevServerMiddleware(
359359
if (!fullAuth) {
360360
sendError(
361361
res,
362-
503,
362+
403,
363363
'Auth credentials not configured. Set DD_API_KEY and DD_APP_KEY to enable remote execution.',
364364
);
365365
return;

0 commit comments

Comments
 (0)