minor adjustments

This commit is contained in:
fbarbu15 2023-11-08 13:38:28 +02:00
parent 2810fa11cd
commit dec5e1a4a7
No known key found for this signature in database
GPG Key ID: D75221C8DEA22501
3 changed files with 4 additions and 4 deletions

View File

@ -11,7 +11,7 @@ on:
node1:
required: false
type: string
default: "wakuorg/nwaku:deploy-wakuv2-test"
default: "wakuorg/nwaku:latest"
node2:
required: false
type: string
@ -27,7 +27,7 @@ on:
env:
FORCE_COLOR: "1"
NODE_1: ${{ inputs.node1 || 'wakuorg/nwaku:deploy-wakuv2-test' }}
NODE_1: ${{ inputs.node1 || 'wakuorg/nwaku:latest' }}
NODE_2: ${{ inputs.node2 || 'wakuorg/go-waku:latest' }}
PROTOCOL: ${{ inputs.protocol || 'REST' }}

View File

@ -11,7 +11,7 @@ class BaseClient(ABC):
# useful when running tests in parallel, where occasional network-related errors such as
# connection drops, timeouts, or temporary unavailability of a service can occur. Retrying
# ensures that such intermittent issues don't cause the tests to fail outright.
@retry(stop=stop_after_delay(2), wait=wait_fixed(0.1), reraise=True)
@retry(stop=stop_after_delay(1), wait=wait_fixed(0.1), reraise=True)
def make_request(self, method, url, headers=None, data=None):
logger.debug("%s call: %s with payload: %s", method.upper(), url, data)
response = requests.request(method.upper(), url, headers=headers, data=data)

View File

@ -56,7 +56,7 @@ class WakuNode:
if "go-waku" in self._docker_manager.image:
go_waku_args = {
"min-relay-peers-to-publish": "0",
"min-relay-peers-to-publish": "1",
"legacy-filter": "false",
"log-level": "DEBUG",
}