Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Attribute error Name while executing the sample code (#205)
* Fix attribute error `Name` while getting the status of cluster `cluster.status.State.Name(cluster.status.state),` this code will throw an attribute error when executed because it's trying to access State.Name which is not a function of class ClusterStatus.State A better approach will be to use the `cluster.status.state.name` as State is of enum type * fix:attribute error Name while getting the status of cluster
- Loading branch information