We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f25808f commit fe51f38Copy full SHA for fe51f38
1 file changed
apps/webapp/app/services/upsertBranch.server.ts
@@ -120,7 +120,9 @@ export class UpsertBranchService {
120
shortcode,
121
maximumConcurrencyLimit: parentEnvironment.maximumConcurrencyLimit,
122
// Inherit the region from the parent preview environment.
123
- defaultWorkerGroupId: parentEnvironment.defaultWorkerGroupId,
+ defaultWorkerGroup: parentEnvironment.defaultWorkerGroupId
124
+ ? { connect: { id: parentEnvironment.defaultWorkerGroupId } }
125
+ : undefined,
126
organization: {
127
connect: {
128
id: parentEnvironment.organization.id,
0 commit comments