Issue #3103
Updated by kersom about 7 years ago
TaskViewSet to have *spawned_tasks* representation even if it is an empty list. Current response: <pre><code class="json"> "results": [{ "_href": "http://pulp3.dev:8000/api/v3/tasks/e99435f5-0ba4-4ccf-bb66-60a1bd120ae1/", "group": null, "state": "completed", "started_at": "2017-10-20T18:37:47.630237Z", "finished_at": "2017-10-20T18:37:47.684939Z", "non_fatal_errors": [], "error": null, "worker": "http://pulp3.dev:8000/api/v3/workers/reserved_resource_worker_2@pulp3.dev/", "parent": null, "tags": [], "progress_reports": [] }] </code></pre> Code on github. <pre><code class="python"> parent = models.ForeignKey("Task", null=True, related_name="spawned_tasks") </code></pre> Link to code. https://github.com/bmbouter/pulp/blob/e5986173d1617fcadb520c84b78691982cce2218/platform/pulpcore/app/models/task.py#L163