Webhook Deliveries Failing (503) Deployment URL and Active URL Mismatch

My webhook deliveries are failing for a specific hook that is using a relative path as its uri.

  [[webhooks.subscriptions]]
  topics = [ "orders/create" ]
  uri = "/webhooks/app/orders-create"

When I look at the delivery logs, the endpoint matches the current version’s application_url.

But when I check the build configuration, the app url matches the url of my current dev server (shopify.app.toml).

I’ve gotten the two URLS to match up, by setting “automatically_update_urls_on_dev = false,” but then my webhook deliveries return a 530 response code.

I have also tried resetting my application with "npm run shopify app dev – --reset " thinking that would reinstall my webhooks, but it did not.

I’ll also not that when I trigger an even in the CLI with “npm run shopify webhook trigger,” the webhook works as expected.

Any insights would be greatly appreciated!