Skip to content

Commit

Permalink
Bug fix in AWS glue operator related to num_of_dpus #19787 (#21353)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ritika-Singhal authored Feb 6, 2022
1 parent 8da7af2 commit d115018
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airflow/providers/amazon/aws/operators/glue.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def __init__(
concurrent_run_limit: Optional[int] = None,
script_args: Optional[dict] = None,
retry_limit: int = 0,
num_of_dpus: int = 6,
num_of_dpus: Optional[int] = None,
aws_conn_id: str = 'aws_default',
region_name: Optional[str] = None,
s3_bucket: Optional[str] = None,
Expand Down

0 comments on commit d115018

Please sign in to comment.