Only waithing when there is something to wait for
This commit is contained in:
parent
abd63a7fad
commit
837d3462be
@ -233,11 +233,14 @@ def main():
|
|||||||
|
|
||||||
print("Running benchmark...")
|
print("Running benchmark...")
|
||||||
benchmark_results = run_benchmark(args.workers, args.timeout, args.file)
|
benchmark_results = run_benchmark(args.workers, args.timeout, args.file)
|
||||||
print("Waiting for inflight MQTT messages to arrive...")
|
|
||||||
# Wait for inflight messages for a little
|
|
||||||
|
|
||||||
|
# Wait for inflight messages for a little
|
||||||
total_successful_uploads = len([req for req in benchmark_results if req.upload_status_code == 200])
|
total_successful_uploads = len([req for req in benchmark_results if req.upload_status_code == 200])
|
||||||
all_arrived = False
|
all_arrived = alerts_arrived_queue.qsize() >= total_successful_uploads
|
||||||
|
|
||||||
|
if (not all_arrived) and (args.inflight_timeout > 0):
|
||||||
|
print("Waiting for inflight MQTT messages to arrive...")
|
||||||
|
|
||||||
waiting_started = time.time()
|
waiting_started = time.time()
|
||||||
for _ in range(int(args.inflight_timeout * 1000)):
|
for _ in range(int(args.inflight_timeout * 1000)):
|
||||||
if alerts_arrived_queue.qsize() >= total_successful_uploads:
|
if alerts_arrived_queue.qsize() >= total_successful_uploads:
|
||||||
|
Loading…
Reference in New Issue
Block a user