You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 6, 2020. It is now read-only.
Copy file name to clipboardexpand all lines: parity/cli/mod.rs
+1-1
Original file line number
Diff line number
Diff line change
@@ -296,7 +296,7 @@ usage! {
296
296
297
297
ARG arg_release_track:(String) = "current", or |c:&Config| c.parity.as_ref()?.release_track.clone(),
298
298
"--release-track=[TRACK]",
299
-
"Set which release track we should use for updates. TRACK can be one of: stable - Stable releases; beta - Beta releases; nightly - Nightly releases (unstable); testing - Testing releases (do not use); current - Whatever track this executable was released on.",
299
+
"Set which release track we should use for updates. TRACK can be one of: stable - Stable releases; nightly - Nightly releases (unstable); testing - Testing releases (do not use); current - Whatever track this executable was released on.",
300
300
301
301
ARG arg_chain:(String) = "foundation", or |c:&Config| c.parity.as_ref()?.chain.clone(),
Copy file name to clipboardexpand all lines: parity/configuration.rs
+3-27
Original file line number
Diff line number
Diff line change
@@ -981,9 +981,7 @@ impl Configuration {
981
981
},
982
982
track:matchself.args.arg_release_track.as_ref(){
983
983
"stable" => ReleaseTrack::Stable,
984
-
"beta" => ReleaseTrack::Beta,
985
984
"nightly" => ReleaseTrack::Nightly,
986
-
"testing" => ReleaseTrack::Testing,
987
985
"current" => ReleaseTrack::Unknown,
988
986
_ => returnErr("Invalid value for `--releases-track`. See `--help` for more information.".into()),
989
987
},
@@ -1512,23 +1510,11 @@ mod tests {
1512
1510
#[test]
1513
1511
fnshould_parse_updater_options(){
1514
1512
// when
1515
-
let conf0 = parse(&["parity","--release-track=testing"]);
1516
-
let conf1 = parse(&["parity","--auto-update","all","--no-consensus","--auto-update-delay","300"]);
1517
-
let conf2 = parse(&["parity","--no-download","--auto-update=all","--release-track=beta","--auto-update-delay=300","--auto-update-check-frequency=100"]);
1518
-
let conf3 = parse(&["parity","--auto-update=xxx"]);
1513
+
let conf0 = parse(&["parity","--auto-update","all","--no-consensus","--auto-update-delay","300"]);
1514
+
let conf1 = parse(&["parity","--auto-update=xxx"]);
let response = r#"{"jsonrpc":"2.0","result":{"hash":"0x0000000000000000000000000000000000000096","track":"beta","version":{"major":1,"minor":5,"patch":0}},"id":1}"#;
133
+
let response = r#"{"jsonrpc":"2.0","result":{"hash":"0x0000000000000000000000000000000000000096","track":"stable","version":{"major":1,"minor":5,"patch":0}},"id":1}"#;
let response = r#"{"jsonrpc":"2.0","result":{"fork":15100,"minor":null,"this_fork":15000,"track":{"binary":"0x00000000000000000000000000000000000000000000000000000000000005e6","fork":15100,"is_critical":true,"version":{"hash":"0x0000000000000000000000000000000000000097","track":"beta","version":{"major":1,"minor":5,"patch":1}}}},"id":1}"#;
143
+
let response = r#"{"jsonrpc":"2.0","result":{"fork":15100,"minor":null,"this_fork":15000,"track":{"binary":"0x00000000000000000000000000000000000000000000000000000000000005e6","fork":15100,"is_critical":true,"version":{"hash":"0x0000000000000000000000000000000000000097","track":"stable","version":{"major":1,"minor":5,"patch":1}}}},"id":1}"#;
let response = r#"{"jsonrpc":"2.0","result":{"binary":"0x00000000000000000000000000000000000000000000000000000000000005e6","fork":15100,"is_critical":true,"version":{"hash":"0x0000000000000000000000000000000000000097","track":"beta","version":{"major":1,"minor":5,"patch":1}}},"id":1}"#;
94
+
let response = r#"{"jsonrpc":"2.0","result":{"binary":"0x00000000000000000000000000000000000000000000000000000000000005e6","fork":15100,"is_critical":true,"version":{"hash":"0x0000000000000000000000000000000000000097","track":"stable","version":{"major":1,"minor":5,"patch":1}}},"id":1}"#;
0 commit comments