0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-22 04:28:21 +02:00

Add a log context to the daemonized pusher

This commit is contained in:
Mark Haines 2016-04-26 15:57:28 +01:00
parent 6df5a6a833
commit b80b93ea0f

View file

@ -296,10 +296,15 @@ if __name__ == '__main__':
ps = setup(sys.argv[1:])
if ps.config.daemonize:
def run():
with LoggingContext("run"):
change_resource_limit(ps.config.soft_file_limit)
reactor.run()
daemon = Daemonize(
app="synapse-pusher",
pid=ps.config.pid_file,
action=reactor.run,
action=run,
auto_close_fds=False,
verbose=True,
logger=logger,