Browse Source

Add more time for receiving data

tags/0.3.8-rc
haixuantao 1 year ago
parent
commit
71d963e402
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      tests/queue_size_latest_data_python/receive_data.py

+ 1
- 1
tests/queue_size_latest_data_python/receive_data.py View File

@@ -17,6 +17,6 @@ for event in node:
duration = (time.perf_counter_ns() - send_time) / 1_000_000_000
print("Duration: ", duration)
assert (
duration < 1.2
duration < 2
), f"Duration: {duration} should be less than 1 as we should always pull latest data."
time.sleep(1)

Loading…
Cancel
Save