potiuk commented on a change in pull request #20234: URL: https://github.com/apache/airflow/pull/20234#discussion_r771217081
########## File path: airflow/providers/google/cloud/hooks/cloud_build.py ########## @@ -123,9 +123,13 @@ def cancel_build( self.log.info("Start cancelling build: %s.", id_) - build = client.cancel_build( - request={'project_id': project_id, 'id': id_}, retry=retry, timeout=timeout, metadata=metadata + cancel_build = client.cancel_build( + request={'project_id': project_id, 'id': id_}, + retry=retry, + timeout=timeout, + metadata=metadata, ) + build = cancel_build Review comment: Good point let me try. Might be some earlier attempt trickle to final change. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@airflow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org