Added fibers workaround
This commit is contained in:
parent
2d083d52ba
commit
08abdffd69
2 changed files with 8 additions and 0 deletions
7
imports/startup/server/fibers.js
Normal file
7
imports/startup/server/fibers.js
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
// Workaround for: https://github.com/meteor/meteor/issues/9796
|
||||
// https://github.com/meteor/meteor/issues/9796#issuecomment-381676326
|
||||
// https://github.com/sandstorm-io/sandstorm/blob/0f1fec013fe7208ed0fd97eb88b31b77e3c61f42/shell/server/00-startup.js#L99-L129
|
||||
|
||||
import Fiber from 'fibers';
|
||||
|
||||
Fiber.poolSize = 1e9;
|
||||
|
|
@ -1,5 +1,6 @@
|
|||
import './ravenLogger';
|
||||
import './catchExceptions';
|
||||
import './fibers';
|
||||
import './i18n';
|
||||
import './accounts';
|
||||
import './api';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue