mirror of
https://github.com/ansible/awx.git
synced 2026-05-01 22:55:28 -02:30
Job splitting access logic and more feature development
*allow sharding with prompts and schedules *modify create_unified_job contract to pass class & parent_field name *make parent field name instance method & set sharded UJT field *access methods made compatible with job sharding *move shard job special logic from task manager to workflows *save sharded job prompts to workflow job exclusively *allow using sharded jobs in workflows
This commit is contained in:
@@ -2905,7 +2905,7 @@ class JobTemplateLaunch(RetrieveAPIView):
|
||||
raise PermissionDenied()
|
||||
|
||||
passwords = serializer.validated_data.pop('credential_passwords', {})
|
||||
new_job = obj.create_job(**serializer.validated_data)
|
||||
new_job = obj.create_unified_job(**serializer.validated_data)
|
||||
result = new_job.signal_start(**passwords)
|
||||
|
||||
if not result:
|
||||
|
||||
Reference in New Issue
Block a user