You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by tu...@apache.org on 2022/11/25 10:48:23 UTC

[arrow-rs] branch master updated: Add sleep to object_store CI (#3189)

This is an automated email from the ASF dual-hosted git repository.

tustvold pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git


The following commit(s) were added to refs/heads/master by this push:
     new 3998bed87 Add sleep to object_store CI (#3189)
3998bed87 is described below

commit 3998bed87d9eaa95ea1e1e205bac1fa218a9e0f1
Author: Raphael Taylor-Davies <17...@users.noreply.github.com>
AuthorDate: Fri Nov 25 10:48:17 2022 +0000

    Add sleep to object_store CI (#3189)
    
    * Add sleep to object_store CI
    
    * Update .github/workflows/object_store.yml
    
    Co-authored-by: Andrew Lamb <an...@nerdnetworks.org>
    
    Co-authored-by: Andrew Lamb <an...@nerdnetworks.org>
---
 .github/workflows/object_store.yml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.github/workflows/object_store.yml b/.github/workflows/object_store.yml
index 370c1ced3..23c5bab13 100644
--- a/.github/workflows/object_store.yml
+++ b/.github/workflows/object_store.yml
@@ -86,6 +86,8 @@ jobs:
       - name: Configure Fake GCS Server (GCP emulation)
         run: |
           docker run -d -p 4443:4443 fsouza/fake-gcs-server -scheme http
+          # Give the container a moment to start up prior to configuring it
+          sleep 1
           curl -v -X POST --data-binary '{"name":"test-bucket"}' -H "Content-Type: application/json" "http://localhost:4443/storage/v1/b"
           echo '{"gcs_base_url": "http://localhost:4443", "disable_oauth": true, "client_email": "", "private_key": ""}' > "$GOOGLE_SERVICE_ACCOUNT"