Skip to content

Commit af32710

Browse files
Fix connection error in case ssl is disabled
1 parent eb43070 commit af32710

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

reverse_engineering/helpers/connectionHelper.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const connectViaSsh = info =>
4545
const getSslOptions = (connectionInfo, logger) => {
4646
const sslType = mapSslType(connectionInfo.sslType);
4747

48-
if (sslType === 'disable') {
48+
if (!sslType || sslType === 'disable') {
4949
return false;
5050
}
5151

0 commit comments

Comments
 (0)