You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -261,7 +268,11 @@ This gives you the ability to setup the desired order of built-in and your custo
261
268
262
269
The way grpc interceptor works is that it intercepts the call and returns the server call listener, which in turn can intercept the request message as well, before forwarding it to the actual service call handler :
By setting `grpc.security.auth.fail-fast` property to `false` all downstream interceptors as well as all upstream interceptors (On_Message) will still be executed +
267
278
@@ -270,11 +281,19 @@ Assuming `interceptor_2` is `securityInterceptor` :
270
281
* For failed authentication/authorization with `grpc.security.auth.fail-fast=true`(default): +
271
282
+
272
283
273
-
`interceptor_1(interceptCall)` -> `securityInterceptor(interceptCall)` - *Call is Closed* -> +++<del>+++ -> `interceptor_3(interceptCall)` -> `interceptor_1(On_Message)`-> `securityInterceptor(On_Message)`-> `interceptor_3(On_Message)`-> `actual service call`+++</del>+++
0 commit comments