Workers throwing 404 when live
I'm working on a Micro-services architecture but with CF workers and when the gateway forwards the API calls to other workers i get the error on the picture. This error only occurs when live

4 Replies
are you trying to
fetch
the other worker?
you should use service bindings: https://developers.cloudflare.com/workers/runtime-apis/bindings/service-bindings/Thanks but it doesn’t say how I can expose endpoints. I use http and not rpc
you can
env.WORKER.fetch('https://worker.local/whatever-path-you-want')
https://developers.cloudflare.com/workers/runtime-apis/bindings/service-bindings/http/Thanks