From 4035e5e90c45d62393f852aece31ee5994d692c9 Mon Sep 17 00:00:00 2001 From: Matthew Stidham Date: Mon, 6 Dec 2021 14:53:22 -0800 Subject: [PATCH] test_l4: Fix improper time interval parameters Signed-off-by: Matthew Stidham --- py-scripts/test_l4.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py-scripts/test_l4.py b/py-scripts/test_l4.py index 06e1b077..8f2acfb9 100755 --- a/py-scripts/test_l4.py +++ b/py-scripts/test_l4.py @@ -351,7 +351,7 @@ python3 ./test_l4.py layer4traffic = ','.join([[*x.keys()][0] for x in ip_test.local_realm.json_get('layer4')['endpoint']]) ip_test.cx_profile.monitor(col_names=['name', 'bytes-rd', 'urls/s', 'bytes-wr'], report_file=rpt_file, - duration_sec=ip_test.local_realm.parse_time(args.test_duration).total_seconds(), + duration_sec=args.test_duration, created_cx=layer4traffic, output_format=output_form, script_name='test_l4',