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 2fb2b12 commit bdd9c64Copy full SHA for bdd9c64
commands/utils/set_args.js
@@ -354,9 +354,11 @@ function sync_args_from_cmd(args) {
354
}
355
356
if ("network_http2" in args) {
357
- lt_config["run_settings"]["network_http2"] = true
358
- ? args["network_http2"] == "true"
359
- : false;
+ if (args["network_http2"] == "true") {
+ lt_config.run_settings.network_http2 = true;
+ } else {
360
+ lt_config.run_settings.network_http2 = false;
361
+ }
362
} else if (lt_config["run_settings"]["network_http2"] && !lt_config["run_settings"]["network_http2"]) {
363
lt_config["run_settings"]["network_http2"] = false;
364
0 commit comments