Skip to content

Commit

Permalink
Use prod value for fiber stack size
Browse files Browse the repository at this point in the history
Summary: Tests overflow in fibers. Default is 24k, while prod is 64k.

Reviewed By: stuclar, lenar-f

Differential Revision: D57885718

fbshipit-source-id: b86369d65f94d4fe2092a4fb84506bf81cc7a4e3
  • Loading branch information
Anton Likhtarov authored and facebook-github-bot committed May 29, 2024
1 parent 3490ce9 commit 9e72e3d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mcrouter/test/MCProcess.py
Original file line number Diff line number Diff line change
Expand Up @@ -782,7 +782,8 @@ def __init__(self, args, port=None, base_dir=None):
'-a', self.async_spool,
'--stats-root', self.stats_dir,
'--debug-fifo-root', self.debug_fifo_root,
'--rss-limit-mb', '16384'])
'--rss-limit-mb', '16384',
'--fibers-stack-size', '65536'])

listen_sock = None
pass_fds = []
Expand Down

0 comments on commit 9e72e3d

Please sign in to comment.