fix(kanban): keep '--created-by' default as 'user'
Out-of-scope behavior change in #23521 — the kanban notifier-routing fix also flipped the 'kanban create --created-by' default from 'user' to the active profile name. Revert to keep PR scope focused on the notifier ownership fix; the profile-aware author default can be its own change.
This commit is contained in:
@@ -278,8 +278,8 @@ def build_parser(parent_subparsers: argparse._SubParsersAction) -> argparse.Argu
|
||||
"durations (90s, 30m, 2h, 1d). When exceeded, "
|
||||
"the dispatcher SIGTERMs (then SIGKILLs) the worker "
|
||||
"and re-queues the task.")
|
||||
p_create.add_argument("--created-by", default=None,
|
||||
help="Author name recorded on the task (default: active profile or user)")
|
||||
p_create.add_argument("--created-by", default="user",
|
||||
help="Author name recorded on the task (default: user)")
|
||||
p_create.add_argument("--skill", action="append", default=[], dest="skills",
|
||||
help="Skill to force-load into the worker "
|
||||
"(repeatable). Appended to the built-in "
|
||||
|
||||
Reference in New Issue
Block a user