Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Fix hosting rewrite deployment bug for skipped functions (#6658).
3 changes: 3 additions & 0 deletions src/deploy/functions/prepare.ts
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,9 @@ export function inferDetailsFromExisting(
continue;
}

// Copy the service id over to the new endpoint.
wantE.runServiceId = haveE.runServiceId;

// By default, preserve existing environment variables.
// Only overwrite environment variables when there are user specified environment variables.
if (!usedDotenv) {
Expand Down