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.
1 parent 56f76fe commit f07574aCopy full SHA for f07574a
crates/ark/src/main.rs
@@ -258,14 +258,14 @@ fn main() {
258
"--startup-delay" => {
259
if let Some(delay_arg) = argv.next() {
260
if let Ok(delay) = delay_arg.parse::<u64>() {
261
- startup_delay = Some(std::time::Duration::from_millis(delay));
+ startup_delay = Some(std::time::Duration::from_secs(delay));
262
} else {
263
- eprintln!("Can't parse delay in milliseconds");
+ eprintln!("Can't parse delay in seconds");
264
break;
265
}
266
267
eprintln!(
268
- "A delay in milliseconds must be specified with the --startup-delay argument."
+ "A delay in seconds must be specified with the --startup-delay argument."
269
);
270
271
0 commit comments