You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2019/08/28 17:07:23 UTC

[GitHub] [airflow] mik-laj commented on issue #5939: [AIRFLOW-5335] Update GCSHook methods so they need min IAM perms

mik-laj commented on issue #5939: [AIRFLOW-5335] Update GCSHook methods so they need min IAM perms
URL: https://github.com/apache/airflow/pull/5939#issuecomment-525835573
 
 
   ```
   client = storage.Client()
   
   bucket = client.get_bucket('gcp-transfer-first-target')
   ```
   It immediately sends requests to the server.
   ```
   bucket = client.bucket('gcp-transfer-second-target')
   ```
   It does not send the request immediately. It is necessary to execute: ``bucket.reload()``
   
   Related discussion: https://github.com/apache/airflow/pull/5054#discussion_r272844679

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services