From db6254e3c59ef887ff41ff2aff44349010bd6bad Mon Sep 17 00:00:00 2001 From: imarom Date: Tue, 26 Jan 2016 09:53:21 -0500 Subject: packet is now base64 encoded --- .../automation/trex_control_plane/client/trex_stateless_client.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'scripts/automation/trex_control_plane/client/trex_stateless_client.py') diff --git a/scripts/automation/trex_control_plane/client/trex_stateless_client.py b/scripts/automation/trex_control_plane/client/trex_stateless_client.py index 886edb61..65e69938 100755 --- a/scripts/automation/trex_control_plane/client/trex_stateless_client.py +++ b/scripts/automation/trex_control_plane/client/trex_stateless_client.py @@ -636,20 +636,19 @@ class STLClient(object): self.connected = False # connect sync channel - self.logger.pre_cmd("connecting to RPC server on {0}:{1}".format(self.connection_info['server'], self.connection_info['sync_port'])) + self.logger.pre_cmd("Connecting to RPC server on {0}:{1}".format(self.connection_info['server'], self.connection_info['sync_port'])) rc = self.comm_link.connect() self.logger.post_cmd(rc) if not rc: return rc - - # version rc = self._transmit("get_version") if not rc: return rc + self.server_version = rc.data() self.global_stats.server_version = rc.data() -- cgit 1.2.3-korg