Skip to content

Commit

Permalink
Merge pull request #4246 from hove-io/increase_distributed_greenlet_nb
Browse files Browse the repository at this point in the history
Increase max nb of greenlets in distributed
  • Loading branch information
xlqian authored Mar 19, 2024
2 parents 359c223 + f53e077 commit ae44115
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/jormungandr/jormungandr/default_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@
# PATCH_WITH_GEVENT_SOCKET_LEVEL : values possibles all, thread or socket
PATCH_WITH_GEVENT_SOCKET_LEVEL = os.getenv('JORMUNGANDR_PATCH_WITH_GEVENT_SOCKET_LEVEL', 'socket')

GREENLET_POOL_SIZE = int(os.getenv('JORMUNGANDR_GEVENT_POOL_SIZE', 10))
GREENLET_POOL_SIZE = int(os.getenv('JORMUNGANDR_GEVENT_POOL_SIZE', 30))

PARSER_MAX_COUNT = int(os.getenv('JORMUNGANDR_PARSER_MAX_COUNT', 1000))

Expand Down

0 comments on commit ae44115

Please sign in to comment.