Skip to content
This repository has been archived by the owner on Nov 29, 2023. It is now read-only.

fix: Attribute error Name while executing the sample code #205

Merged
merged 3 commits into from Jul 2, 2021

Commits on Apr 23, 2021

  1. 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
    vikrant-sinha committed Apr 23, 2021
    Copy the full SHA
    7eac499 View commit details
    Browse the repository at this point in the history

Commits on Jun 21, 2021

  1. Copy the full SHA
    b623d81 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    1c38d63 View commit details
    Browse the repository at this point in the history