Skip to content

Commit

Permalink
Fix typo in DataprocCreateClusterOperator (#15462)
Browse files Browse the repository at this point in the history
Fix typo in DataprocCreateClusterOperator `param` was accidentally written as `parm`
  • Loading branch information
jlaneve authored Apr 21, 2021
1 parent 42f6b67 commit c5e3020
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions airflow/providers/google/cloud/operators/dataproc.py
Original file line number Diff line number Diff line change
Expand Up @@ -438,10 +438,10 @@ class DataprocCreateClusterOperator(BaseOperator):
:type cluster_config: Union[Dict, google.cloud.dataproc_v1.types.ClusterConfig]
:param region: The specified region where the dataproc cluster is created.
:type region: str
:parm delete_on_error: If true the cluster will be deleted if created with ERROR state. Default
:param delete_on_error: If true the cluster will be deleted if created with ERROR state. Default
value is true.
:type delete_on_error: bool
:parm use_if_exists: If true use existing cluster
:param use_if_exists: If true use existing cluster
:type use_if_exists: bool
:param request_id: Optional. A unique id used to identify the request. If the server receives two
``DeleteClusterRequest`` requests with the same id, then the second request will be ignored and the
Expand Down

0 comments on commit c5e3020

Please sign in to comment.