https://github.com/grpc/grpc/tree/master/examples/python/retry

in the laky_server.py file 
this line is sometimes ignored :
```
        logging.info("Successfully responding to RPC from %s", 
context.peer())
```
it sometimes does not log the success 
i even added some more code to it:
```
        logger.info("Successfully responding to RPC from %s", 
context.peer())
        await asyncio.sleep(1)
        print("I love grpc")
        request.name="habib"
```
And all of it get ignored (sometimes not in every request)
it feels like it immediately send a response, like it's cashed or 
something. 

-- 
You received this message because you are subscribed to the Google Groups 
"grpc.io" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to grpc-io+unsubscr...@googlegroups.com.
To view this discussion visit 
https://groups.google.com/d/msgid/grpc-io/30f30c77-d11c-4d84-bfe3-cd9ff040a018n%40googlegroups.com.

Reply via email to