Fix token to correct format

pull/4/merge
Erik Johnston 10 years ago
parent e2b861cc67
commit ae493c9418
  1. 2
      synapse/storage/stream.py

@ -265,7 +265,7 @@ class StreamStore(SQLBaseStore):
if rows:
topo = rows[0]["topological_ordering"]
toke = rows[0]["stream_ordering"]
start_token = "p%s-%s" % (topo, toke)
start_token = "t%s-%s" % (topo, toke)
token = (start_token, end_token)
else:

Loading…
Cancel
Save