From 2c662ddde4e1277a0dc17295748aa5f0c41fa163 Mon Sep 17 00:00:00 2001
From: Erik Johnston <erik@matrix.org>
Date: Thu, 16 May 2019 14:21:39 +0100
Subject: [PATCH] Indirect tuple conversion

---
 synapse/storage/relations.py | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/synapse/storage/relations.py b/synapse/storage/relations.py
index 732418ec65..996cb6903a 100644
--- a/synapse/storage/relations.py
+++ b/synapse/storage/relations.py
@@ -81,6 +81,9 @@ class RelationPaginationToken(object):
     def to_string(self):
         return "%d-%d" % (self.topological, self.stream)
 
+    def as_tuple(self):
+        return attr.astuple(self)
+
 
 @attr.s
 class AggregationPaginationToken(object):
@@ -108,6 +111,9 @@ class AggregationPaginationToken(object):
     def to_string(self):
         return "%d-%d" % (self.count, self.stream)
 
+    def as_tuple(self):
+        return attr.astuple(self)
+
 
 class RelationsWorkerStore(SQLBaseStore):
     @cached(tree=True)
-- 
GitLab