there is a worker that we want to deploy on any route - “/*”. Let’s call it workerA.
There is anoter worker we want to deploy on specific rout “/path1/”. Let’s call in workerB.
Actions is happening within domain on enterprise plan.
How the request will be processed?
i) only worker A will be used?
ii) workerA and then worker B will be used? Which will be used first?
iii) only workerB will be used?
My intention to have both workers to process the request and me being able to select which of them comes first.
Thanks a lot for explaining.
There are reasons behind why this would be a preferred way. Also, I’ve read that once CF app with worker is installed on certain domain - app’s worker and standard workers are chained. So the chain concept itself is somewhat technically really possible…