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
// WorkerDeploymentHandle is a handle to a Worker Deployment.
// NOTE: Experimental
//
// Exposed as: [go.temporal.io/sdk/client.WorkerDeploymentHandle]
WorkerDeploymentHandle interface {
...
}
// WorkerDeploymentClient is the client that manages Worker Deployments.
// NOTE: Experimental
//
// Exposed as: [go.temporal.io/sdk/client.WorkerDeploymentClient]
WorkerDeploymentClient interface {
// GetHandle returns a handle to a Worker Deployment.
//
// This method does not validate the Worker Deployment Name. If there is no deployment
// with that name in this namespace, methods like WorkerDeploymentHandle.Describe()
// will return an error.
// NOTE: Experimental
//
// Exposed as: [go.temporal.io/sdk/client.WorkerDeploymentHandle] <----- WRONG, not needed, added by -fix
GetHandle(name string) WorkerDeploymentHandle
}
Missing doc in internal/worker_deployment_client.go for internal:WorkerDeploymentHandle to client:WorkerDeploymentHandle
2025/02/17 20:19:49 Changes needed, see previous stdout for which objects. Re-run command with -fix to auto-generate new docs.
Actual Behavior
Missing doc in internal/worker_deployment_client.go for internal:WorkerDeploymentHandle to client:WorkerDeploymentHandle
2025/02/17 20:19:49 Changes needed, see previous stdout for which objects. Re-run command with -fix to auto-generate new docs.
Got above after running
-fix
Expected Behavior
It should not add/require Exposed in GetHandle
See #1814
The text was updated successfully, but these errors were encountered: