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

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: googleapis/python-dataproc
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: vikrant-sinha/python-dataproc
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 3 commits
  • 2 files changed
  • 2 contributors

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 authored Apr 23, 2021
    Configuration menu
    Copy the full SHA
    7eac499 View commit details
    Browse the repository at this point in the history

Commits on Jun 21, 2021

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