We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 357960e + 8176dee commit 09b3491Copy full SHA for 09b3491
2 files changed
src/client.rs
@@ -147,7 +147,7 @@ pub enum ClientError {
147
InvalidUri(#[from] http::uri::InvalidUri),
148
#[error("timeout")]
149
Timeout,
150
- #[error("deadline")]
+ #[error("aborted due to deadline")]
151
Deadline,
152
#[error(transparent)]
153
UrlGeneratorError(#[from] UrlGeneratorError),
src/main.rs
@@ -53,6 +53,7 @@ struct Opts {
53
n_http2_parallel: usize,
54
#[clap(
55
help = "Duration of application to send requests. If duration is specified, n is ignored.
56
+When the duration is reached, ongoing requests are aborted and counted as \"aborted due to deadline\"
57
Examples: -z 10s -z 3m.",
58
short = 'z'
59
)]
0 commit comments