Skip to content

Commit

Permalink
fix(nodeshift-config): allow config properties to overwritten with ne…
Browse files Browse the repository at this point in the history
…w rest client update (#187)
  • Loading branch information
lholmquist committed Feb 12, 2018
1 parent 68c8c4e commit 9587efb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/nodeshift-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ async function setup (options = {}) {
// Since we are only doing s2i builds(atm), append the s2i bit to the end
buildName: `${projectPackage.name}-s2i`,
// Load an instance of the Openshift Rest Client, https://www.npmjs.com/package/openshift-rest-client
openshiftRestClient: await restClient(config, {request: {strictSSL: options.strictSSL}})
openshiftRestClient: await restClient({request: {strictSSL: options.strictSSL}, config: config})
}, options);
}

Expand Down

0 comments on commit 9587efb

Please sign in to comment.