diff options
author | Tom Pollard <tom.pollard@codethink.co.uk> | 2019-10-23 16:21:09 +0100 |
---|---|---|
committer | bst-marge-bot <marge-bot@buildstream.build> | 2019-10-25 13:33:17 +0000 |
commit | 4dd9b9ed5293ef3dc40250c5ad470859f1d081ad (patch) | |
tree | 1976fc7698efec12194ac5277bb23d1a36da54d4 /src/buildstream/_scheduler/queues/pullqueue.py | |
parent | 44e8e25d88a473d69197998f80a91bedaec15ddd (diff) | |
download | buildstream-tpollard/render_task_group.tar.gz |
_frontend/status.py: Complete names when rendering dynamic queue statustpollard/render_task_group
At somepoint action_name instead of complete_name started to be
rendered to the user for the dynamic list of queue status reports.
As we now have more of a UI seperation between 'Artifact' & 'Source'
tasks, it also makes sense to reflect these actions in this output.
Diffstat (limited to 'src/buildstream/_scheduler/queues/pullqueue.py')
-rw-r--r-- | src/buildstream/_scheduler/queues/pullqueue.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildstream/_scheduler/queues/pullqueue.py b/src/buildstream/_scheduler/queues/pullqueue.py index 7f4125099..e1d69590f 100644 --- a/src/buildstream/_scheduler/queues/pullqueue.py +++ b/src/buildstream/_scheduler/queues/pullqueue.py @@ -30,7 +30,7 @@ from ..._exceptions import SkipJob class PullQueue(Queue): action_name = "Pull" - complete_name = "Pulled" + complete_name = "Artifacts Pulled" resources = [ResourceType.DOWNLOAD, ResourceType.CACHE] def get_process_func(self): |