From 6968ea03715cd26c0813f93f7148737a54c4f1d4 Mon Sep 17 00:00:00 2001 From: Andrey Kurilin Date: Wed, 7 Jun 2017 17:02:36 +0300 Subject: [PATCH] Extend tags feature of tasks * Add ability to setup multiple tags for a task. The database supports an unlimited number of tags per tasks. It would be nice to support that feature from user side too. * The tags feature is a bit useless, if there is no way to filter by them. This patch adds this ability to `rally task list` command. Change-Id: I959fa904a38f193f77f25b53ba3ee86760fff91c --- etc/rally.bash_completion | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/rally.bash_completion b/etc/rally.bash_completion index fb62dd69..82ddd332 100644 --- a/etc/rally.bash_completion +++ b/etc/rally.bash_completion @@ -33,7 +33,7 @@ _rally() OPTS["task_detailed"]="--uuid --iterations-data" OPTS["task_export"]="--uuid --type --to" OPTS["task_import"]="--file --deployment --tag" - OPTS["task_list"]="--deployment --all-deployments --status --uuids-only" + OPTS["task_list"]="--deployment --all-deployments --status --tag --uuids-only" OPTS["task_report"]="--out --open --html --html-static --uuid" OPTS["task_results"]="--uuid" OPTS["task_sla-check"]="--uuid --json"