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

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .changeset/thirty-kings-serve.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"wrangler": patch
---

fix: remove Hyperdrive warning for local development.

Hyperdrive bindings are now supported when developing locally with Hyperdrive. We should update our logs to reflect this.
6 changes: 0 additions & 6 deletions packages/wrangler/src/dev/dev.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -433,12 +433,6 @@ function DevSession(props: DevSessionProps) {
);
}

if (props.local && props.bindings.hyperdrive?.length) {
logger.warn(
"Hyperdrive does not currently support 'wrangler dev' in local mode at this stage of the beta. Use the '--remote' flag to test a Hyperdrive configuration before deploying."
);
}

const announceAndOnReady: typeof props.onReady = async (
finalIp,
finalPort,
Expand Down