bugfix: wrong function call of publish_json in kibana scripts 81/15781/1
authorSerenaFeng <feng.xiaowei@zte.com.cn>
Fri, 17 Jun 2016 02:49:57 +0000 (10:49 +0800)
committerSerenaFeng <feng.xiaowei@zte.com.cn>
Fri, 17 Jun 2016 02:55:47 +0000 (10:55 +0800)
change input parameter order when call publish_json
in mongo_to_elasticsearch.py

JIRA: FUNCTEST-318

Change-Id: I2ff35b069a7b02356083d52ea864e57f6820b4ce
Signed-off-by: SerenaFeng <feng.xiaowei@zte.com.cn>
utils/test/scripts/mongo_to_elasticsearch.py

index 51b6913..5373257 100644 (file)
@@ -360,7 +360,7 @@ def publish_mongo_data(output_destination):
             for mongo_json_line in fobj:
                 test_result = json.loads(mongo_json_line)
                 if modify_mongo_entry(test_result):
-                    shared_utils.publish_json(test_result, output_destination, es_user, es_passwd)
+                    shared_utils.publish_json(test_result, es_user, es_passwd, output_destination)
     finally:
         if os.path.exists(tmp_filename):
             os.remove(tmp_filename)