From e371d3cd56cd9d3c01c69e3cc965a5ed17ee0e6a Mon Sep 17 00:00:00 2001 From: markramach Date: Wed, 4 Jan 2017 13:09:01 -0600 Subject: [PATCH] incorrect parameter name --- clc_ansible_module/clc_meta_fact.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clc_ansible_module/clc_meta_fact.py b/clc_ansible_module/clc_meta_fact.py index 94cea46..402b0a9 100644 --- a/clc_ansible_module/clc_meta_fact.py +++ b/clc_ansible_module/clc_meta_fact.py @@ -64,7 +64,7 @@ def process_request(self): if params.get('jobId'): criteria += ' jobId: "' + params.get('jobId') + '" ' if params.get('executionId'): - criteria += ' jobId: "' + params.get('jobId') + '" ' + criteria += ' executionId: "' + params.get('executionId') + '" ' if params.get('name'): criteria += ' name: "' + params.get('name') + '" '