diff options
author | Erik Johnston <erik@matrix.org> | 2019-06-17 13:54:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-17 13:54:29 +0100 |
commit | 414d2ca3a6342fc78fc402c43ff98d0079822649 (patch) | |
tree | 06a7560b022b39aec2c31764ce93619ed1974b51 /synapse | |
parent | Move SyTest to Buildkite (#5459) (diff) | |
parent | Newsfile (diff) | |
download | synapse-414d2ca3a6342fc78fc402c43ff98d0079822649.tar.xz |
Merge pull request #5389 from matrix-org/erikj/renew_attestations_on_master
Only start background group attestation renewals on master
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/groups/attestations.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/synapse/groups/attestations.py b/synapse/groups/attestations.py index e5dda1975f..469ab8ac7b 100644 --- a/synapse/groups/attestations.py +++ b/synapse/groups/attestations.py @@ -132,9 +132,10 @@ class GroupAttestionRenewer(object): self.is_mine_id = hs.is_mine_id self.attestations = hs.get_groups_attestation_signing() - self._renew_attestations_loop = self.clock.looping_call( - self._start_renew_attestations, 30 * 60 * 1000, - ) + if not hs.config.worker_app: + self._renew_attestations_loop = self.clock.looping_call( + self._start_renew_attestations, 30 * 60 * 1000, + ) @defer.inlineCallbacks def on_renew_attestation(self, group_id, user_id, content): |