Skip to content

Commit

Permalink
Merge branch 'main' into chore/error-types
Browse files Browse the repository at this point in the history
  • Loading branch information
benhancock authored Oct 17, 2024
2 parents bddb643 + f833f2d commit 80b866e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/commands/deploy/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ const runDeploy = async ({

if (!deployToProduction) {
functionLogsUrl += `?scope=deploy:${deployId}`
edgeFunctionLogsUrl += `?scope=deploy:${deployId}`
edgeFunctionLogsUrl += `?scope=deployid:${deployId}`
}

return {
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/commands/deploy/deploy.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ describe.skipIf(process.env.NETLIFY_TEST_DISABLE_LIVE === 'true').concurrent('co
)
expect(deploy).toHaveProperty(
'edge_function_logs',
`https://app.netlify.com/sites/${SITE_NAME}/logs/edge-functions?scope=deploy:${deploy.deploy_id}`,
`https://app.netlify.com/sites/${SITE_NAME}/logs/edge-functions?scope=deployid:${deploy.deploy_id}`,
)
})
})
Expand Down

0 comments on commit 80b866e

Please sign in to comment.