From 42837a4bfe8732986551c9518bb12d0f28ebb30e Mon Sep 17 00:00:00 2001 From: ahothan Date: Wed, 23 Aug 2017 12:15:14 -0700 Subject: NFVBENCH-8 config checking fails with Exception TypeError: string indices must be integers, not str Change-Id: Ic3263374efffc9ea2566e107b99f47fb3b0c6edf Signed-off-by: ahothan --- nfvbench/nfvbench.py | 8 -------- 1 file changed, 8 deletions(-) (limited to 'nfvbench/nfvbench.py') diff --git a/nfvbench/nfvbench.py b/nfvbench/nfvbench.py index dccd63c..e9594d5 100644 --- a/nfvbench/nfvbench.py +++ b/nfvbench/nfvbench.py @@ -21,7 +21,6 @@ from chain_runner import ChainRunner from collections import defaultdict from config import config_load from config import config_loads -from config import get_err_config import copy import credentials import datetime @@ -472,13 +471,6 @@ def main(): LOG.info('Loading configuration string: ' + opts.config) config = config_loads(opts.config, config) - # Making sure no unknown option is given - err_config = get_err_config(config, default_cfg) - if err_config: - err_msg = 'Unknown options found in config file/string: ' + err_config - LOG.error(err_msg) - raise Exception(err_msg) - # traffic profile override options override_custom_traffic(config, opts.frame_sizes, opts.unidir) -- cgit 1.2.3-korg