Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: create Queue model on memory ds when rabbit ds is not found #2

Merged
merged 1 commit into from
Nov 23, 2016
Merged
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

const _ = require('lodash')
const debug = require('debug')('loopback:component:mq')
const loopback = require('loopback')
const setupModel = require('./setup-model')
const Rabbit = require('./rabbit')
let rabbit = null
Expand Down Expand Up @@ -90,6 +91,9 @@ module.exports = function loopbackComponentMq(app, config) {
}
else {
debug(`DataSource ${options.dataSource} not found`)
const memDs = loopback.createDataSource({ connector: 'memory' })

setupModel(app, memDs, {}, {})
}

}
2 changes: 1 addition & 1 deletion test/test-server/common/models/event.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module.exports = function(Event) {
if (Event.sendOutgoingMessage) {
Event.sendOutgoingMessage(ctx.instance)
} else {
throw new Error('Method Event.sendOutgoingMessage does not exist')
console.error('Method Event.sendOutgoingMessage does not exist')
}
next()
})
Expand Down