From: yayogev Date: Mon, 28 Aug 2017 12:50:39 +0000 (+0300) Subject: fix matching of CLI output against regexp list X-Git-Tag: opnfv-5.1.RC1~46^2 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=c8625e396e9d49eda2a927167dce3cda70dee839;p=calipso.git fix matching of CLI output against regexp list Change-Id: I8f177ec1a1fd1c75681f6abf786eeeed50fc426d Signed-off-by: yayogev --- diff --git a/app/discover/fetchers/cli/cli_access.py b/app/discover/fetchers/cli/cli_access.py index f745de8..275a3e8 100644 --- a/app/discover/fetchers/cli/cli_access.py +++ b/app/discover/fetchers/cli/cli_access.py @@ -204,4 +204,3 @@ class CliAccess(BinaryConverter, Fetcher): matches = regex.search(line) if matches and name not in o: o[name] = matches.group(1) - break