prepare for PR

This commit is contained in:
fbarbu15 2023-12-22 15:04:31 +02:00
parent d4263fec67
commit 0384f67c31
No known key found for this signature in database
GPG Key ID: D75221C8DEA22501
2 changed files with 2 additions and 2 deletions

View File

@ -29,4 +29,4 @@ DEFAULT_PUBSUB_TOPIC = get_env_var("DEFAULT_PUBSUB_TOPIC", "/waku/2/default-waku
PROTOCOL = get_env_var("PROTOCOL", "REST")
RUNNING_IN_CI = get_env_var("CI")
NODEKEY = get_env_var("NODEKEY", "30348dd51465150e04a5d9d932c72864c8967f806cce60b5d26afeca1e77eb68")
API_REQUEST_TIMEOUT = get_env_var("API_REQUEST_TIMEOUT", 20)
API_REQUEST_TIMEOUT = get_env_var("API_REQUEST_TIMEOUT", 30)

View File

@ -105,7 +105,7 @@ class StepsFilter:
except Exception as ex:
assert "Bad Request" in str(ex) or "Not Found" in str(ex) or "couldn't find any messages" in str(ex)
@retry(stop=stop_after_delay(30), wait=wait_fixed(1), reraise=True)
@retry(stop=stop_after_delay(40), wait=wait_fixed(1), reraise=True)
@allure.step
def wait_for_subscriptions_on_main_nodes(self, content_topic_list, pubsub_topic=None):
if pubsub_topic is None: