mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Merge pull request #1195 from matrix-org/erikj/incorrect_func
Remove unused but buggy function
This commit is contained in:
commit
16dc9064d4
@ -137,17 +137,8 @@ class PusherStore(SQLBaseStore):
|
|||||||
|
|
||||||
@cachedInlineCallbacks(num_args=1, max_entries=15000)
|
@cachedInlineCallbacks(num_args=1, max_entries=15000)
|
||||||
def get_if_user_has_pusher(self, user_id):
|
def get_if_user_has_pusher(self, user_id):
|
||||||
result = yield self._simple_select_many_batch(
|
# This only exists for the cachedList decorator
|
||||||
table='pushers',
|
raise NotImplementedError()
|
||||||
keyvalues={
|
|
||||||
'user_name': 'user_id',
|
|
||||||
},
|
|
||||||
retcol='user_name',
|
|
||||||
desc='get_if_user_has_pusher',
|
|
||||||
allow_none=True,
|
|
||||||
)
|
|
||||||
|
|
||||||
defer.returnValue(bool(result))
|
|
||||||
|
|
||||||
@cachedList(cached_method_name="get_if_user_has_pusher",
|
@cachedList(cached_method_name="get_if_user_has_pusher",
|
||||||
list_name="user_ids", num_args=1, inlineCallbacks=True)
|
list_name="user_ids", num_args=1, inlineCallbacks=True)
|
||||||
|
Loading…
Reference in New Issue
Block a user