C++. I have a secondary thread sending a heartbeat call to server every 200ms. That is used to determine if user is still logged in, if server doesn't receive the heartbeat, server deletes the user session AKA logouts the user. So in a sense i myself is handling the reconnect/retrying so that GRPC's internal retry delay is unnecessarily causing delay in this whole cycle.
On Monday, 18 July 2016 22:15:04 UTC+6, Eric Anderson wrote: > > What language are you working in? Is there a reason you want at static > value? You don't want to just cap the exponential backoff to a lower > maximum? > > On Mon, Jul 18, 2016 at 7:07 AM, <[email protected] <javascript:>> wrote: > >> Right now the retry delay gradually increases. How can i set it to a >> static value? >> >> -- >> 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 [email protected] <javascript:>. >> To post to this group, send email to [email protected] >> <javascript:>. >> To view this discussion on the web visit >> https://groups.google.com/d/msgid/grpc-io/7570b608-d5a6-4f49-8eff-6a12fd28d774%40googlegroups.com >> >> <https://groups.google.com/d/msgid/grpc-io/7570b608-d5a6-4f49-8eff-6a12fd28d774%40googlegroups.com?utm_medium=email&utm_source=footer> >> . >> For more options, visit https://groups.google.com/d/optout. >> > > -- 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 [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/grpc-io/b88591bb-106c-4270-85e9-fb8f00578f52%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
