Skip to content

Commit

Permalink
Use gcp_conn_id where appropriate (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
judoole authored Jun 28, 2022
1 parent c0e93a2 commit b9c8a64
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def __init__(self,
prefix: str = None,
destination_bucket=None,
destination=None,
gcp_conn_id='google_cloud_default',
gcp_conn_id=None,
delegate_to=None,
single_file=True,
*args, **kwargs
Expand Down Expand Up @@ -84,7 +84,7 @@ def create_downstream_sensor(self) -> Union[TaskMixin, Sequence[TaskMixin]]:
destination_bucket=self.destination_bucket,
destination_object=self.destination,
move_object=True,
google_cloud_storage_conn_id=self.gcp_conn_id,
gcp_conn_id=self.gcp_conn_id,
delegate_to=self.delegate_to
)

Expand Down

0 comments on commit b9c8a64

Please sign in to comment.