mirror of
https://github.com/logos-messaging/logos-messaging-interop-tests.git
synced 2026-01-07 00:13:06 +00:00
minor adjustments
This commit is contained in:
parent
2810fa11cd
commit
dec5e1a4a7
4
.github/workflows/test.yml
vendored
4
.github/workflows/test.yml
vendored
@ -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' }}
|
||||
|
||||
|
||||
@ -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)
|
||||
|
||||
@ -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",
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user