Skip to content
This repository has been archived by the owner on Mar 14, 2023. It is now read-only.

pass strict option into ssh connection pool #50

Merged
merged 1 commit into from
Mar 30, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/shipit.js
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ Shipit.prototype.initSshPool = function () {
throw new Error('Servers not filled');

var servers = _.isArray(this.config.servers) ? this.config.servers : [this.config.servers];
this.pool = new sshPool.ConnectionPool(servers, _.extend({}, this.options, _.pick(this.config, 'key')));
this.pool = new sshPool.ConnectionPool(servers, _.extend({}, this.options, _.pick(this.config, 'key', 'strict')));
return this;
};

Expand Down