Where do async global request filters fit in the order of operations as described here?
We recently added a global async filter and a request filter with priority int.MaxValue
was executed before the the async filter. When we changed the async global request filter to a non-async global request filter, the global request filter was executed before the request filter with priority int.MaxValue
.
Is this the expected behavior?