Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[2017.7.9] Code coverage fixes #52647

Merged
merged 9 commits into from
Apr 21, 2019
Prev Previous commit
Limit the size of the default multiprocessing logging queue to 100k r…
…ecords
  • Loading branch information
s0undt3ch committed Apr 20, 2019
commit 90602dde42db9cfba5dd1f30784945a7f0f053b4
2 changes: 1 addition & 1 deletion salt/log/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -816,7 +816,7 @@ def get_multiprocessing_logging_queue():
return __MP_LOGGING_QUEUE

if __MP_LOGGING_QUEUE is None:
__MP_LOGGING_QUEUE = multiprocessing.Queue()
__MP_LOGGING_QUEUE = multiprocessing.Queue(100000)
return __MP_LOGGING_QUEUE


Expand Down