Skip to content

Commit f419b74

Browse files
committed
Fix binary installer proxy 403 (Bruno Jouhier)
1 parent 074b5dd commit f419b74

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
- Fixed regression with end-to-end tracing attributes not being set.
66

7+
- Fix binary installer proxy 403 (Bruno Jouhier)
8+
79
## node-oracledb v2.1.1 (16 Feb 2018)
810

911
- Fixed regression with querystream() in Node 4 & 6.

package/oracledbinstall.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ function getFileReadStreamByProxy(hostname, path, proxyHostname, proxyPort) {
200200
method: 'CONNECT',
201201
path: hostname + ':' + PORT,
202202
headers: {
203-
'host': hostname + PORT,
203+
'host': hostname + ':' + PORT,
204204
}
205205
});
206206

0 commit comments

Comments
 (0)