Skip to content

Commit 3039f39

Browse files
committed
fix: restored original default value for --http-follow-redirects
1 parent 48cf90d commit 3039f39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/plugins/http/options.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ pub(crate) struct Options {
1212
/// Boolean expression to use to determine if a request is successful.
1313
pub http_success: String,
1414

15-
#[clap(long, default_value_t = true)]
15+
#[clap(long, default_value_t = false)]
1616
/// Follow HTTP redirects.
1717
pub http_follow_redirects: bool,
1818
#[clap(long, default_value = "GET")]

0 commit comments

Comments
 (0)