summaryrefslogtreecommitdiffstats
path: root/scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_client.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_client.py')
-rwxr-xr-xscripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_client.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_client.py b/scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_client.py
index 412fcbe3..6f6e8bfd 100755
--- a/scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_client.py
+++ b/scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_client.py
@@ -3647,14 +3647,16 @@ class STLClient(object):
parser = parsing_opts.gen_parser(self,
"connect",
self.connect_line.__doc__,
- parsing_opts.FORCE)
+ parsing_opts.FORCE,
+ parsing_opts.READONLY)
opts = parser.parse_args(line.split())
if not opts:
return opts
self.connect()
- self.acquire(force = opts.force)
+ if not opts.readonly:
+ self.acquire(force = opts.force)
return RC_OK()