mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-26 23:23:20 +03:00
Fix delay field order.
This commit is contained in:
parent
85541a3e20
commit
d990877486
@ -30,10 +30,10 @@ pub struct RunnerOptionsBuilder {
|
||||
compressed: bool,
|
||||
connect_timeout: Duration,
|
||||
connects_to: Vec<String>,
|
||||
delay: Duration,
|
||||
context_dir: ContextDir,
|
||||
continue_on_error: bool,
|
||||
cookie_input_file: Option<String>,
|
||||
delay: Duration,
|
||||
follow_location: bool,
|
||||
http_version: Option<HttpVersion>,
|
||||
ignore_asserts: bool,
|
||||
@ -64,10 +64,10 @@ impl Default for RunnerOptionsBuilder {
|
||||
compressed: false,
|
||||
connect_timeout: Duration::from_secs(300),
|
||||
connects_to: vec![],
|
||||
delay: Duration::from_millis(0),
|
||||
context_dir: ContextDir::default(),
|
||||
continue_on_error: false,
|
||||
cookie_input_file: None,
|
||||
delay: Duration::from_millis(0),
|
||||
follow_location: false,
|
||||
http_version: None,
|
||||
ignore_asserts: false,
|
||||
|
Loading…
Reference in New Issue
Block a user