Skip to content

Commit f3954c4

Browse files
Fix Cloudformation CI workflow (#2946)
* increase timeout and update wf for debug * update action env var * update cf workflow and base function
1 parent 852356d commit f3954c4

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/cloudformation-ci.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,8 @@ jobs:
105105
id: wait-for-agents
106106
working-directory: ${{ env.INTEGRATIONS_SETUP_DIR }}
107107
timeout-minutes: 1
108+
env:
109+
STACK_VERSION: "${{ env.ELK_VERSION }}"
108110
run: |
109111
poetry run python ./agents_enrolled.py
110112
@@ -115,7 +117,6 @@ jobs:
115117
aws cloudformation delete-stack --stack-name ${{ env.CNVM_STACK_NAME }}
116118
aws cloudformation wait stack-delete-complete --stack-name ${{ env.CNVM_STACK_NAME }}
117119
118-
119120
Deploy-CloudFormation-DirectKeys:
120121
name: "Deploy CloudFormation DirectKeys"
121122
runs-on: ubuntu-latest

tests/fleet_api/base_call_api.py

+2
Original file line numberDiff line numberDiff line change
@@ -86,4 +86,6 @@ def uses_new_fleet_api_response(version: str) -> bool:
8686
Returns:
8787
bool: True if the version uses the new Fleet API response format, False otherwise.
8888
"""
89+
if not version:
90+
return ValueError("Stack version must be provided.")
8991
return version.startswith("9.") or version.startswith("8.17")

0 commit comments

Comments
 (0)