Skip to content

Commit 094380b

Browse files
put the sslInsecure back
1 parent 3311d2c commit 094380b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

NewmanPostman/newmantask.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ function GetToolRunner(collectionToRun: string) {
2121
newman.argIf(typeof sslClientCert != 'undefined' && tl.filePathSupplied('sslClientCert'), ['--ssl-client-cert', sslClientCert]);
2222
let sslClientKey = tl.getPathInput('sslClientKey', false, true);
2323
newman.argIf(typeof sslClientKey != 'undefined' && tl.filePathSupplied('sslClientKey'), ['--ssl-client-key', sslClientKey]);
24-
let sslStrict = tl.getBoolInput('sslStrict');
25-
newman.argIf(sslStrict, ['--insecure']);
24+
let sslInsecure = tl.getBoolInput('sslInsecure');
25+
newman.argIf(sslInsecure, ['--insecure']);
2626

2727
let unicodeDisabled = tl.getBoolInput('unicodeDisabled');
2828
newman.argIf(unicodeDisabled, ['--disable-unicode']);

NewmanPostman/task.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@
238238
"groupName": "ssl"
239239
},
240240
{
241-
"name": "sslStrict",
241+
"name": "sslInsecure",
242242
"type": "boolean",
243243
"label": "Disable Strict SSL",
244244
"helpMarkDown": "Disables strict ssl",

0 commit comments

Comments
 (0)