Skip to content

Commit c3d4675

Browse files
committed
fix(ci): missing silence in make command
1 parent 3bcce7c commit c3d4675

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/integration-gateway.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
pushd $GATEWAY_CHECKOUT_DIR
8282
export GATEWAY_HOST=$(make gateway-host -s)
8383
make generate-token
84-
export GATEWAY_AUTH_KEY=$(make get-token)
84+
export GATEWAY_AUTH_KEY=$(make get-token -s)
8585
popd
8686
poetry run pytest tests/integrations/gateway -n $(nproc --all)
8787
env:

tests/integrations/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,12 @@ def get_deployed_functions_by_name(client: Client, app_instance: Serverless):
5454
return {function.name: function for function in deployed_functions}
5555

5656

57-
def trigger_function(domain_name: str, max_retries: int = 5) -> requests.Response:
57+
def trigger_function(domain_name: str, max_retries: int = 10) -> requests.Response:
5858
url = f"https://{domain_name}"
5959
session = requests.Session()
6060
retries = Retry(
6161
total=max_retries,
62-
backoff_factor=1,
62+
backoff_factor=2,
6363
status=10, # Status max retries
6464
status_forcelist=[500, 404],
6565
raise_on_status=False, # Raise for status called after

0 commit comments

Comments
 (0)