summary refs log tree commit diff
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2018-05-30 11:45:41 +0100
committerErik Johnston <erik@matrix.org>2018-05-30 11:45:41 +0100
commitf687d8fae2df19f0453cb22e8c5f3e63187b1dd3 (patch)
treef1fd2ad564a80270a13b126c440a0caaa120d0ec
parentJust iterate once rather than create a new set (diff)
downloadsynapse-f687d8fae2df19f0453cb22e8c5f3e63187b1dd3.tar.xz
Comments
-rw-r--r--synapse/storage/events.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/synapse/storage/events.py b/synapse/storage/events.py
index cad5086f5f..da053f0b18 100644
--- a/synapse/storage/events.py
+++ b/synapse/storage/events.py
@@ -1378,8 +1378,8 @@ class EventsStore(EventsWorkerStore):
         #
         # 1. If all prev events have the same chunk ID then use that chunk ID
         # 2. If we have none of the prev events but do have events pointing to
-        #    it, then we use their chunk ID if:
-        #     - They’re all in the same chunk, and
+        #    the event, then we use their chunk ID if:
+        #     - They're all in the same chunk, and
         #     - All their prev events match the events being inserted
         # 3. Otherwise, create a new chunk and use that
 
@@ -1411,8 +1411,8 @@ class EventsStore(EventsWorkerStore):
         # Set of chunks that refer to this event.
         forward_chunk_ids = set()
 
-        # Set of event_ids of all prev_events of those in `forward_events`. This
-        # is guaranteed to contain at least the given event_id.
+        # All the prev_events of events in `forward_events`.
+        # Note that this will include the current event_id.
         sibling_events = set()
         for eid in forward_events:
             chunk_id = self._simple_select_one_onecol_txn(