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
my test interceptor code:
import grpc
from loguru import logger`
class ValidateInterceptor(grpc.ServerInterceptor):
def intercept_service(self, continuation, handler_call_details):
logger.info('this is my interceptor')
return continuation(handler_call_details)
i think there is something wrong in djangogrpcframework settings while handling interceptor path, it needs the () to instantiate the class which imports from the settings with string. Could you help me take a look?
The text was updated successfully, but these errors were encountered:
i think there is something wrong in djangogrpcframework settings while handling interceptor path, it needs the () to instantiate the class which imports from the settings with string. Could you help me take a look?
The text was updated successfully, but these errors were encountered: