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
Is your feature request related to a problem? Please describe.
Today Go (and probably Java) will fatal error the worker if server returns InvalidArgument or NamespaceNotFound. These were originally assumed to be unrecoverable errors but we are now understanding at least InvalidArgument is recoverable (server sends InvalidArgument if the gRPC deadline is too close to now).
Describe the solution you'd like
Every SDK should react the same to seeing a worker error. They should probably mimic core in that they retry for so long, even fatal ones, before actually being fatal.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Today Go (and probably Java) will fatal error the worker if server returns
InvalidArgument
orNamespaceNotFound
. These were originally assumed to be unrecoverable errors but we are now understanding at leastInvalidArgument
is recoverable (server sendsInvalidArgument
if the gRPC deadline is too close to now).Describe the solution you'd like
Every SDK should react the same to seeing a worker error. They should probably mimic core in that they retry for so long, even fatal ones, before actually being fatal.
The text was updated successfully, but these errors were encountered: