Skip to content
This repository has been archived by the owner on Feb 13, 2024. It is now read-only.

Increase timeouts env plans #458

Merged
merged 1 commit into from
Mar 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion libs/python/helperEnvCF.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ def check_if_service_plan_supported_in_cloudfoundry(btpUsecase, service):
def check_if_service_plan_in_cf_marketplace(btpUsecase, service):
# Defines how often we should ask CF whether the plan is
# available or not
MAX_TRIES = 12
MAX_TRIES = 25
# Seconds after which we should try again
SEARCH_EVERY_X_SECONDS = 10

Expand Down
2 changes: 1 addition & 1 deletion libs/python/helperEnvironments.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def check_if_service_plan_supported_in_environment(btpUsecase, service, environm
result = False
# Defines how often we should ask sapbtp whether the plan is
# available or not
MAX_TRIES = 12
MAX_TRIES = 25
# Seconds after which we should try again
SEARCH_EVERY_X_SECONDS = 10

Expand Down