<@U79JY5TL3> Hopefully quick question for you, do ...
# apollo-kotlin
a
@mbonnin Hopefully quick question for you, do we have to guard against interceptors being called concurrently for different requests?
Context: our interceptor performs a potentially long running operation that we don't want to duplicate/repeat (Getting and possibly forcing refresh of a Firebase App Check token)
m
yes,
ApolloInterceptor.intercept()
may be called concurrently
a
Thanks!