Skip to content
Merged
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: 4 additions & 2 deletions binaries/cli/src/command/run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,11 @@ pub struct Run {
/// similar to pressing Ctrl-C. This gracefully stops all nodes in the dataflow.
///
/// Examples:
/// --stop-after 30 # 30 seconds
/// --stop-after 30s # 30 seconds
/// --stop-after 30 # 30 seconds (a bare number is seconds)
/// --stop-after 10s # 10 seconds
/// --stop-after 5m # 5 minutes
/// --stop-after 1h30m # 1 hour 30 minutes
/// --stop-after 500ms # 500 milliseconds
#[clap(long, value_name = "DURATION", verbatim_doc_comment)]
#[arg(value_parser = parse_duration)]
pub stop_after: Option<Duration>,
Expand Down