prepare for PR

This commit is contained in:
fbarbu15 2023-12-22 15:45:55 +02:00
parent 0384f67c31
commit b6a9c0b1cd
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", 30)
API_REQUEST_TIMEOUT = get_env_var("API_REQUEST_TIMEOUT", 60)

View File

@ -118,7 +118,7 @@ class StepsFilter:
assert filter_sub_response["requestId"] == request_id
assert filter_sub_response["statusDesc"] in ["OK", ""] # until https://github.com/waku-org/nwaku/issues/2286 is fixed
@retry(stop=stop_after_delay(30), wait=wait_fixed(1), reraise=True)
@retry(stop=stop_after_delay(70), wait=wait_fixed(1), reraise=True)
@allure.step
def subscribe_optional_filter_nodes(self, content_topic_list, pubsub_topic=None):
if pubsub_topic is None: