Skip to content
Snippets Groups Projects
Commit d1d53622 authored by Erik Johnston's avatar Erik Johnston
Browse files

Add comment

parent ac66e11f
No related branches found
No related tags found
No related merge requests found
......@@ -62,6 +62,11 @@ class FederationSenderSlaveStore(
):
def __init__(self, db_conn, hs):
super(FederationSenderSlaveStore, self).__init__(db_conn, hs)
# We pull out the current federation stream position now so that we
# always have a known value for the federation position in memory so
# that we don't have to bounce via a deferred once when we start the
# replication streams.
self.federation_out_pos_startup = self._get_federation_out_pos(db_conn)
def _get_federation_out_pos(self, db_conn):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment