Hi,
I faced the issue that
when the server cannot communicate with infras(db, kafka, ...)
the client receives deadline exceed error and does not run failover as the failover is triggered only when the server is not connectable.
I want to close the connection with deadline exceed and connect to another server ready for failover.
As I think there are two options, but not quite great.
1. error check for deadline exceed for all client grpc codes
2. server close connection faster than deadline exceed
Is it possible to trigger failover when deadline exceed triggered as the connection closed? what about a custom loadbalancer?