From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 4520E1B33F for ; Mon, 5 Feb 2018 08:10:12 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 04 Feb 2018 23:10:10 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.46,463,1511856000"; d="scan'208";a="24875895" Received: from imail001.iil.intel.com ([10.184.207.12]) by FMSMGA003.fm.intel.com with ESMTP; 04 Feb 2018 23:10:09 -0800 Received: from desku.iil.intel.com (desku.iil.intel.com [143.185.141.162]) by imail001.iil.intel.com with ESMTP id w157A4jY003106; Mon, 5 Feb 2018 09:10:04 +0200 From: Rami Rosen To: yong.liu@intel.com Cc: dts@dpdk.org, Rami Rosen Date: Mon, 5 Feb 2018 09:06:22 -0500 Message-Id: <20180205140622.20435-1-rami.rosen@intel.com> X-Mailer: git-send-email 2.14.3 Subject: [dts] [PATCH] framework/ssh_connection: fix a typo X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: test suite reviews and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Feb 2018 07:10:12 -0000 This trivial patch fixes a typo in framework/ssh_connection.py. Signed-off-by: Rami Rosen --- framework/ssh_connection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/ssh_connection.py b/framework/ssh_connection.py index c265bf7..622ed50 100644 --- a/framework/ssh_connection.py +++ b/framework/ssh_connection.py @@ -98,7 +98,7 @@ class SSHConnection(object): def check_available(self): MAGIC_STR = "DTS_CHECK_SESSION" out = self.session.send_command('echo %s' % MAGIC_STR, timeout=0.1) - # if not avaiable, try to send ^C and check again + # if not available, try to send ^C and check again if MAGIC_STR not in out: self.logger.info("Try to recover session...") self.session.send_command('^C', timeout=TIMEOUT) -- 2.14.3