diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-04-07 06:25:58 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-04-07 06:25:58 +0900 |
| commit | 765a10c8da6b64268b327b32bfd23d8f75bc9f80 (patch) | |
| tree | e842ded6dbd72148550cdec497a85b80bdae089c /src | |
| parent | Fix bug (diff) | |
| download | misskey-765a10c8da6b64268b327b32bfd23d8f75bc9f80.tar.gz misskey-765a10c8da6b64268b327b32bfd23d8f75bc9f80.tar.bz2 misskey-765a10c8da6b64268b327b32bfd23d8f75bc9f80.zip | |
Increase limit to avoid warning
Diffstat (limited to 'src')
| -rw-r--r-- | src/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index.ts b/src/index.ts index f45bcaa6ad..68b289793b 100644 --- a/src/index.ts +++ b/src/index.ts @@ -35,7 +35,7 @@ if (process.env.NODE_ENV != 'production') { } // https://github.com/Automattic/kue/issues/822 -require('events').EventEmitter.prototype._maxListeners = 256; +require('events').EventEmitter.prototype._maxListeners = 512; // Start app main(); |