0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-09-26 03:28:59 +02:00

Turn on core dumps

This commit is contained in:
Erik Johnston 2016-01-07 15:28:40 +00:00
parent fcbe63eaad
commit 33bef689c1

View file

@ -375,10 +375,13 @@ def change_resource_limit(soft_file_no):
soft_file_no = hard
resource.setrlimit(resource.RLIMIT_NOFILE, (soft_file_no, hard))
logger.info("Set file limit to: %d", soft_file_no)
resource.setrlimit(
resource.RLIMIT_CORE, (resource.RLIM_INFINITY, resource.RLIM_INFINITY)
)
except (ValueError, resource.error) as e:
logger.warn("Failed to set file limit: %s", e)
logger.warn("Failed to set file or core limit: %s", e)
def setup(config_options):