Skip to content
Snippets Groups Projects
Commit a3f65760 authored by Erik Johnston's avatar Erik Johnston
Browse files

Remove unused but buggy function

parent 7fc2b5c0
No related branches found
No related tags found
No related merge requests found
...@@ -137,17 +137,7 @@ class PusherStore(SQLBaseStore): ...@@ -137,17 +137,7 @@ 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( raise NotImplementedError()
table='pushers',
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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment