Skip to content

Commit

Permalink
objective repair nats invocation
Browse files Browse the repository at this point in the history
  • Loading branch information
cherusk committed Nov 19, 2023
1 parent e8f07a0 commit d12622f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion breeder/linux_network_stack/objective.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def objective(trial, identifier, archive_db_url, breeder_name):
asyncio.run(send_msg_via_nats(subject=f'effectuation_{identifier}', data_dict=settings_data))

logger.warning('gathering recon')
metric = json.loads(asyncio.run(receive_msg_via_nat(subject=f'recon_{identifier}')))
metric = json.loads(asyncio.run(receive_msg_via_nats(subject=f'recon_{identifier}')))
metric_value = metric.get('metric')
rtt = float(metric_value['tcp_rtt'])
delivery_rate = float(metric_value['tcp_delivery_rate_bytes'])
Expand Down

0 comments on commit d12622f

Please sign in to comment.