Sailsjs - oorm hook loading too long - module

I made a nodejs application using sails.js . It works fine in my localhost. The problem occurs during the production process when I try to publish it on the server (module). You can see the error below.

Error: The hook `pubsub` is taking too long to load.
Make sure it is triggering its `initialize()` callback, or else set `sails.config.pubsub._hookTimeout to a higher value (currently 20000)
    at tooLong [as _onTimeout] (/mnt/data/1/ApiDevConf-master/node_modules/sails/lib/app/private/loadHooks.js:92:21)
    at Timer.listOnTimeout (timers.js:110:15) { [Error: The hook `pubsub` is taking too long to load.
Make sure it is triggering its `initialize()` callback, or else set `sails.config.pubsub._hookTimeout to a higher value (currently 20000)] code: 'E_HOOK_TIMEOUT' }

I tried to figure out how to solve the problem, but nothing works. I tried something like here .

I also installed correctly NODE_ENV = production

Thank you for your time.

+4
source share
1 answer

Seems like this could be one of two issues.

1.) config/model.js -, alter. migrate: 'safe' . , NODE_ENV production.

, : , , Sails . , .

2.) , . , , . -, . config/env/production.js :

module.exports = {
  hookTimeout: 40000
}
+7

All Articles