Merge pull request #852 from strongloop/add_new_connectors

Fix missing connector error msg for db2, cloudant
This commit is contained in:
Candy 2016-02-10 10:34:30 -05:00
commit 9a76fb4c07
1 changed files with 1 additions and 1 deletions

View File

@ -198,7 +198,7 @@ function connectorModuleNames(name) {
}
}
// Only try the short name if the connector is not from StrongLoop
if (['mongodb', 'oracle', 'mysql', 'postgresql', 'mssql', 'rest', 'soap']
if (['mongodb', 'oracle', 'mysql', 'postgresql', 'mssql', 'rest', 'soap', 'db2', 'cloudant']
.indexOf(name) === -1) {
names.push(name);
}