From 820db9e03ef1b61637d97e058ff17c228c5016bf Mon Sep 17 00:00:00 2001 From: Logan Lipke Date: Thu, 11 Feb 2021 17:44:46 -0800 Subject: [PATCH] Changed command for lfcurl --- py-json/realm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py-json/realm.py b/py-json/realm.py index c717b336..489fe167 100755 --- a/py-json/realm.py +++ b/py-json/realm.py @@ -1882,7 +1882,7 @@ class GenCXProfile(LFCliBase): "--pidfile /tmp/lf_helper_iperf3_test.pid" % (self.dest, sta_name) elif self.type == "lfcurl": if self.file_output is not None: - self.cmd = "./scripts/lf_curl.sh -p %s -o %s -n %s -d %s" % \ + self.cmd = "./scripts/lf_curl.sh -p %s -i AUTO -o %s -n %s -d %s" % \ (sta_name, self.file_output, self.loop_count, self.dest) else: raise ValueError("Please ensure file_output has been set correctly")