From 4201d4734bd7103e7ebf8038ed831926b424012f Mon Sep 17 00:00:00 2001 From: Oleg Kulachenko Date: Tue, 18 Jul 2023 17:47:22 +0400 Subject: [PATCH] Disable aws ec2 metadata Fixed bug https://github.com/nspcc-dev/neofs-s3-gw/issues/798 This bug is only reproducible on ubuntu-latest in github actions. This is a bug specifically of github acions, not the neofs-s3-gw: https://github.com/actions/runner-images/issues/2791 https://github.com/aws/aws-cli/issues/5623 Signed-off-by: Oleg Kulachenko --- .github/workflows/run-tests.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index ea4a47f504..89a648b6b9 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -27,6 +27,8 @@ jobs: run_system_tests: runs-on: ubuntu-latest timeout-minutes: 500 + env: + AWS_EC2_METADATA_DISABLED: true steps: - name: Checkout neofs-testcases repository uses: actions/checkout@v3