push2cloud-cf-adapter
Advanced tools
Comparing version 1.6.2 to 1.6.3
@@ -0,1 +1,4 @@ | ||
## [v1.6.3](https://github.com/push2cloud/cf-adapter/compare/v1.6.2...v1.6.3) | ||
- createTunnel: disable strict host key checking for ssh fallback | ||
## [v1.6.2](https://github.com/push2cloud/cf-adapter/compare/v1.6.1...v1.6.2) | ||
@@ -2,0 +5,0 @@ - optimize createTunnel |
@@ -72,3 +72,3 @@ const _ = require('lodash'); | ||
const childProcess = exec(`sshpass -p ${config.password} ssh -L ${config.localPort}:${config.dstHost}:${config.dstPort} ${config.username}@${config.host} -p ${config.port} -N`, (err) => { | ||
const childProcess = exec(`sshpass -p ${config.password} ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -L ${config.localPort}:${config.dstHost}:${config.dstPort} ${config.username}@${config.host} -p ${config.port} -N`, (err) => { | ||
if (err) debug(err); | ||
@@ -75,0 +75,0 @@ }); |
{ | ||
"name": "push2cloud-cf-adapter", | ||
"version": "1.6.2", | ||
"version": "1.6.3", | ||
"description": "abstracts cloud foundry api", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
146984