Skip to content

Commit

Permalink
Build 2.38: InterSystems IRIS Data Platform added as a supported DB
Browse files Browse the repository at this point in the history
  • Loading branch information
robtweed committed Aug 16, 2018
1 parent 3dd795e commit 2db96d6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lib/worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
| limitations under the License. |
----------------------------------------------------------------------------
12 March 2018
16 August 2018
*/

Expand Down Expand Up @@ -70,7 +70,7 @@ module.exports = function() {
var db = this.userDefined.config.database;
if (db) {
var type = db.type;
if (type === 'cache' || type === 'gtm' || type === 'redis') {
if (type === 'cache' || type === 'gtm' || type === 'redis' || type === 'iris') {
require('ewd-qoper8-' + type)(this, db.params);
}
}
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@

{
"name": "qewd",
"version": "2.37.0",
"version": "2.38.0",
"config": {
"date": "13 August 2018"
"date": "16 August 2018"
},
"description": "Quick and Easy Web Development",
"main": "index.js",
Expand All @@ -18,6 +18,7 @@
"ewd-qoper8-cache": "",
"ewd-qoper8-gtm": "",
"ewd-qoper8-redis": "",
"ewd-qoper8-iris": "",
"fs-extra": "",
"qewd-router": "",
"qewd-monitor": "",
Expand Down

0 comments on commit 2db96d6

Please sign in to comment.