Hi @robtweed
|
if (appModule.beforeMicroServiceHandler) { |
|
this.beforeHandlers[application] = function(messageObj, session, send, finished) { |
|
return appModule.beforeMicroServiceHandler.call(this, messageObj, finished); |
|
}; |
Looks like this passes to beforeMicroServiceHandler
is not the same this
that passed to appModule.init
for example. Could you please take a look?