Skip to content

Commit

Permalink
fix(pfx): set default pfx to undefined
Browse files Browse the repository at this point in the history
  • Loading branch information
patricekahlhornred committed Dec 21, 2021
1 parent 54c71d4 commit d4b2787
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"description": "The official low-level Elasticsearch client for Node.js and the browser.",
"main": "src/elasticsearch.js",
"homepage": "http://www.elastic.co/guide/en/elasticsearch/client/javascript-api/current/index.html",
"version": "8.2.0",
"version": "8.2.2",
"browser": {
"./src/lib/connectors/index.js": "./src/lib/connectors/browser_index.js",
"./src/lib/loggers/index.js": "./src/lib/loggers/browser_index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/lib/host.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ var urlParseFields = [
var simplify = ['host', 'path'];

var sslDefaults = {
pfx: null,
pfx: undefined,
key: null,
passphrase: null,
cert: null,
Expand Down

0 comments on commit d4b2787

Please sign in to comment.