Initial worker impl

This commit is contained in:
Erik Johnston 2017-06-15 12:47:05 +01:00
parent a9d6fa8b2b
commit 6aa5bc8635
6 changed files with 328 additions and 7 deletions

View file

@ -35,6 +35,10 @@ class ServerConfig(Config):
# "disable" federation
self.send_federation = config.get("send_federation", True)
# Whether to update the user directory or not. This should be set to
# false only if we are updating the user directory in a worker
self.update_user_directory = config.get("update_user_directory", True)
self.filter_timeline_limit = config.get("filter_timeline_limit", -1)
if self.public_baseurl is not None: