Modify request before calling other worker on specific URL
Is it possible to modify request before passing it to binding?
Let's say I have code like this on top level worker that sits on https://example.com/edge/backporter
And on
https://example.com/edge/v1
I'd like to make sure request from first worker ends up in
Is anything like this possible?
Let's say I have code like this on top level worker that sits on https://example.com/edge/backporter
And on
BINDING worker I have router that responds to certain URL onlyhttps://example.com/edge/v1
I'd like to make sure request from first worker ends up in
/edge/v1, but it never does, since I can't change request URL, nor can I request.clone(), since then URL would match /edge/backporter and not /edge/v1Is anything like this possible?