Skip to content

Commit

Permalink
Revert "port missing warnings to --x-dev-env"
Browse files Browse the repository at this point in the history
This reverts commit 723ce38.
  • Loading branch information
RamIdeas committed Jul 26, 2024
1 parent 723ce38 commit 2237dc4
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions packages/wrangler/src/api/startDevWorker/ConfigController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -279,22 +279,6 @@ async function resolveConfig(
);
}

// Log warnings for experimental dev-registry-dependent options
if (services.length > 0) {
logger.warn(
"⎔ Support for service bindings in local mode is experimental and may change."
);
}
const externalDurableObjects = extractBindingsOfType(
"durable_object_namespace",
resolved.bindings
).filter((binding) => binding.script_name);
if (externalDurableObjects.length > 0) {
logger.warn(
"⎔ Support for external Durable Objects in local mode is experimental and may change."
);
}

if (!resolved.dev?.origin?.secure && resolved.dev?.remote) {
logger.warn(
"Setting upstream-protocol to http is not currently supported for remote mode.\n" +
Expand Down

0 comments on commit 2237dc4

Please sign in to comment.