Skip to content

Commit

Permalink
chore(docs): split pause title and description (#6733)
Browse files Browse the repository at this point in the history
  • Loading branch information
aj-emerich authored Jan 13, 2025
1 parent 0d1710d commit ac8a05c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion core/src/main/java/io/kestra/plugin/core/flow/Pause.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@
@Getter
@NoArgsConstructor
@Schema(
title = "Pause the current execution and wait for a manual approval (either by humans or other automated processes). All tasks downstream from the Pause task will be put on hold until the execution is manually resumed from the UI. The Execution will be in a Paused state (_marked in purple_) and you can manually resume it by clicking on the \"Resume\" button in the UI, or by calling the POST API endpoint \"/api/v1/executions/{executionId}/resume\". The execution can also be resumed automatically after a timeout."
title = "Pause the current execution and wait for a manual approval (either by humans or other automated processes).",
description = "All tasks downstream from the Pause task will be put on hold until the execution is manually resumed from the UI.\n\n" +
"The Execution will be in a Paused state, and you can either manually resume it by clicking on the \"Resume\" button in the UI or by calling the POST API endpoint `/api/v1/executions/{executionId}/resume`. The execution can also be resumed automatically after a timeout."
)
@Plugin(
examples = {
Expand Down

0 comments on commit ac8a05c

Please sign in to comment.