Skip to content

Commit 0c14ec8

Browse files
fix incorrect check in getPlatformProxy
1 parent 1476462 commit 0c14ec8

File tree

1 file changed

+1
-1
lines changed
  • packages/wrangler/src/api/integrations/platform

1 file changed

+1
-1
lines changed

packages/wrangler/src/api/integrations/platform/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ export async function getPlatformProxy<
142142
});
143143

144144
let remoteProxySession: RemoteProxySession | undefined = undefined;
145-
if (config.configPath && !options.remoteBindings) {
145+
if (config.configPath && options.remoteBindings !== false) {
146146
remoteProxySession = (
147147
(await maybeStartOrUpdateRemoteProxySession({
148148
path: config.configPath,

0 commit comments

Comments
 (0)