Merge pull request #998 from ryanpetrello/fix-980

fix a bug which broke the callback plugin launch process
This commit is contained in:
Ryan Petrello
2018-01-17 12:12:05 -05:00
committed by GitHub
2 changed files with 11 additions and 7 deletions

View File

@@ -3319,7 +3319,8 @@ class JobTemplateCallback(GenericAPIView):
return Response(data, status=status.HTTP_400_BAD_REQUEST)
# Everything is fine; actually create the job.
kv = {"limit": limit, "launch_type": 'callback'}
kv = {"limit": limit}
kv.setdefault('_eager_fields', {})['launch_type'] = 'callback'
if extra_vars is not None and job_template.ask_variables_on_launch:
extra_vars_redacted, removed = extract_ansible_vars(extra_vars)
kv['extra_vars'] = extra_vars_redacted