File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ export default {
8
8
"version" : {
9
9
"major" : "1" ,
10
10
"minor" : "15" ,
11
- "patch" : "0 " ,
11
+ "patch" : "1 " ,
12
12
"preRelease" : null
13
13
} ,
14
14
"server" : {
Original file line number Diff line number Diff line change @@ -50,8 +50,7 @@ export function http1makeRequest(url, options) {
50
50
'DNT' : '1' ,
51
51
...( options . headers || { } ) ,
52
52
...( options . body ? { 'Content-Type' : 'application/json' } : { } )
53
- } ,
54
- rejectUnauthorized : false
53
+ }
55
54
} , async ( res ) => {
56
55
if ( res . statusCode == 401 ) throw new Error ( `[\u001b[31mhttp1makeRequest\u001b[37m]: Received 401 in url: ${ url } .` )
57
56
@@ -142,7 +141,7 @@ export function makeRequest(url, options) {
142
141
const parsedUrl = new URL ( url )
143
142
let compression = null
144
143
145
- const client = http2 . connect ( parsedUrl . origin , { rejectUnauthorized : false } )
144
+ const client = http2 . connect ( parsedUrl . origin , )
146
145
147
146
let reqOptions = {
148
147
':method' : options . method ,
You can’t perform that action at this time.
0 commit comments