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
Users should be able to create a Temporal Client for a temporarily unavailable Temporal server.
SDKs should have the main client or one of the clients that:
Don't have an eager healthCheck and getSystemInfo calls in the constructor.
getSystemCapabilities call should be performed on the first client call in a lazy manner.
healthCheck endpoint should be exposed on the Client that will allow users to perform a health check for the corresponded gRPC service. It will also allow to initialize a connection in an explicit eager manner and perform initialization activities (system capabilities negotiation right now).
There may be a .connect() or .dial call that establishes the connection and fetches system capabilities and which will allow to provide the same functionality/guarantees as an eager client provides.
@bergundy - Yes, in the linked Go PR from the description. Client.CheckHealth(). I need to open a Core issue to expose it so Python can use it. (EDIT: temporalio/sdk-core#367)
Users should be able to create a Temporal Client for a temporarily unavailable Temporal server.
SDKs should have the main client or one of the clients that:
healthCheck
andgetSystemInfo
calls in the constructor.getSystemCapabilities
call should be performed on the first client call in a lazy manner.healthCheck
endpoint should be exposed on the Client that will allow users to perform a health check for the corresponded gRPC service. It will also allow to initialize a connection in an explicit eager manner and perform initialization activities (system capabilities negotiation right now)..connect()
or.dial
call that establishes the connection and fetches system capabilities and which will allow to provide the same functionality/guarantees as an eager client provides.The text was updated successfully, but these errors were encountered: