-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Conversation
e93e26f
to
46244b2
Compare
synapse/storage/appservice.py
Outdated
|
||
|
||
class ApplicationServiceTransactionStore(ApplicationServiceTransactionWorkerStore): | ||
pass |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should I remove this and replace it everywhere with ApplicationServiceTransactionWorkerStore
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wouldn't, because: (a) consistency with the other stores (b) at some point we might want to do something that needs to not be on the workers (c) it would be a faff
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
a comment to clarify mightn't hurt.
695d306
to
6ae9a3d
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
synapse/storage/appservice.py
Outdated
|
||
|
||
class ApplicationServiceTransactionStore(ApplicationServiceTransactionWorkerStore): | ||
pass |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wouldn't, because: (a) consistency with the other stores (b) at some point we might want to do something that needs to not be on the workers (c) it would be a faff
synapse/storage/appservice.py
Outdated
|
||
|
||
class ApplicationServiceTransactionStore(ApplicationServiceTransactionWorkerStore): | ||
pass |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
a comment to clarify mightn't hurt.
This still has a dependency on_get_events
, so we should probably wait until I've factored that out before looking at this.Includes #2902