We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed45f7b commit b4d22b4Copy full SHA for b4d22b4
1 file changed
.github/workflows/integration-tests.yml
@@ -296,7 +296,7 @@ jobs:
296
- name: Get testing resources and credentials
297
run: |
298
# Try with skip_role_deletion parameter first
299
- test_env_var=$(python3.9 tests/get_testing_resources.py skip_role_deletion 2>&1)
+ test_env_var=$(python3.9 tests/get_testing_resources.py skip_role_deletion)
300
301
if [ $? -ne 0 ]; then
302
echo "First attempt with skip_role_deletion failed, trying without parameter..."
@@ -318,7 +318,7 @@ jobs:
318
echo "ERROR: Failed to parse accessKeyID from JSON"
319
echo "Actual payload received:"
320
echo "==================== START PAYLOAD ===================="
321
- echo "$test_env_var"
+ echo "${test_env_var:0:30}"
322
echo "==================== END PAYLOAD ===================="
323
exit 1
324
}
0 commit comments