fix: update according to suggestion

This commit is contained in:
darshankabariya 2026-07-14 22:14:24 +05:30
parent 95fd20c36e
commit 6d68e8da46
No known key found for this signature in database
GPG Key ID: 9A92CCD9899F0D22

View File

@ -29,7 +29,7 @@ class TestLightPushPublish(StepsLightPush):
failed_payloads = []
for payload in SAMPLE_INPUTS:
logger.debug(f'Running test with payload {payload["description"]}')
delay(0.25) # keep sends under the default lightpush:5/1s service rate limit
delay(0.5)
message = self.create_message(payload=to_base64(payload["value"]))
try:
self.check_light_pushed_message_reaches_receiving_peer(message=message)
@ -89,7 +89,7 @@ class TestLightPushPublish(StepsLightPush):
failed_content_topics = []
for content_topic in SAMPLE_INPUTS:
logger.debug(f'Running test with content topic {content_topic["description"]}')
delay(0.25) # keep sends under the default lightpush:5/1s service rate limit
delay(0.5)
message = self.create_message(contentTopic=content_topic["value"])
try:
self.check_light_pushed_message_reaches_receiving_peer(message=message)