Skip to content
This repository has been archived by the owner on May 31, 2024. It is now read-only.

Update help string for 'update task-meta' and 'update launchplan-meta' #445

Merged
merged 2 commits into from
Dec 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions cmd/update/launch_plan_meta.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@ const (
Update the description on the launch plan:
::

flytectl update launchplan -p flytesnacks -d development core.advanced.merge_sort.merge_sort --description "Mergesort example"
flytectl update launchplan-meta -p flytesnacks -d development core.advanced.merge_sort.merge_sort --description "Mergesort example"

Archiving launch plan named entity is not supported and would throw an error:
::

flytectl update launchplan -p flytesnacks -d development core.advanced.merge_sort.merge_sort --archive
flytectl update launchplan-meta -p flytesnacks -d development core.advanced.merge_sort.merge_sort --archive

Activating launch plan named entity would be a noop:
::

flytectl update launchplan -p flytesnacks -d development core.advanced.merge_sort.merge_sort --activate
flytectl update launchplan-meta -p flytesnacks -d development core.advanced.merge_sort.merge_sort --activate

Usage
`
Expand Down
6 changes: 3 additions & 3 deletions cmd/update/task_meta.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@ const (
Update the description on the task:
::

flytectl update task -d development -p flytesnacks core.control_flow.merge_sort.merge --description "Merge sort example"
flytectl update task-meta -d development -p flytesnacks core.control_flow.merge_sort.merge --description "Merge sort example"

Archiving task named entity is not supported and would throw an error:
::

flytectl update task -d development -p flytesnacks core.control_flow.merge_sort.merge --archive
flytectl update task-meta -d development -p flytesnacks core.control_flow.merge_sort.merge --archive

Activating task named entity would be a noop since archiving is not possible:
::

flytectl update task -d development -p flytesnacks core.control_flow.merge_sort.merge --activate
flytectl update task-meta -d development -p flytesnacks core.control_flow.merge_sort.merge --activate

Usage
`
Expand Down
Loading