From f5d58b3cb077b270270b3a21f4b8073affd0af46 Mon Sep 17 00:00:00 2001 From: Jordan Hunt <65152573+jordanhunt22@users.noreply.github.com> Date: Tue, 19 Nov 2024 19:17:34 -0500 Subject: [PATCH] [Conductor] Add ability to provision preview deployments on conductors (#31668) GitOrigin-RevId: d8af6ff9effcf2de093f6a09343e4ad9d51ad3ae --- npm-packages/convex/src/cli/deploy.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/npm-packages/convex/src/cli/deploy.ts b/npm-packages/convex/src/cli/deploy.ts index 6ea130a6..21f4014b 100644 --- a/npm-packages/convex/src/cli/deploy.ts +++ b/npm-packages/convex/src/cli/deploy.ts @@ -179,6 +179,7 @@ async function deployToNewPreviewDeployment( debug?: boolean | undefined; debugBundlePath?: string | undefined; + partitionId?: string | undefined; }, ) { const previewName = options.previewCreate ?? gitBranchFromEnvironment(); @@ -223,6 +224,7 @@ async function deployToNewPreviewDeployment( options.configuredDeployKey, ), identifier: previewName, + partitionId: options.partitionId, }, });