forked from MirrorHub/synapse
Handle error slightly better
This commit is contained in:
parent
f0979afdb0
commit
ed88720952
1 changed files with 2 additions and 2 deletions
|
@ -188,6 +188,7 @@ class ReceiptsStore(SQLBaseStore):
|
|||
linearized_event_id = event_ids[0]
|
||||
else:
|
||||
# we need to points in graph -> linearized form.
|
||||
# TODO: Make this better.
|
||||
def graph_to_linear(txn):
|
||||
query = (
|
||||
"SELECT event_id WHERE room_id = ? AND stream_ordering IN ("
|
||||
|
@ -200,8 +201,7 @@ class ReceiptsStore(SQLBaseStore):
|
|||
if rows:
|
||||
return rows[0][0]
|
||||
else:
|
||||
# TODO: ARGH?!
|
||||
return None
|
||||
raise RuntimeError("Unrecognized event_ids: %r" % (event_ids,))
|
||||
|
||||
linearized_event_id = yield self.runInteraction(
|
||||
"insert_receipt_conv", graph_to_linear
|
||||
|
|
Loading…
Reference in a new issue