Skip to content

Commit

Permalink
incorrect parameter name
Browse files Browse the repository at this point in the history
  • Loading branch information
markramach committed Jan 4, 2017
1 parent 9919ee5 commit e371d3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clc_ansible_module/clc_meta_fact.py
Original file line number Diff line number Diff line change
Expand Up @@ -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') + '" '

Expand Down

0 comments on commit e371d3c

Please sign in to comment.