mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Revert "Add another @cached wrapper, this time on get_presence_state()"
This reverts commit ff1fa0fbf8
.
This commit is contained in:
parent
ff1fa0fbf8
commit
3e420aebd8
@ -13,9 +13,7 @@
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
from twisted.internet import defer
|
||||
|
||||
from ._base import SQLBaseStore, cached
|
||||
from ._base import SQLBaseStore
|
||||
|
||||
|
||||
class PresenceStore(SQLBaseStore):
|
||||
@ -35,7 +33,6 @@ class PresenceStore(SQLBaseStore):
|
||||
desc="has_presence_state",
|
||||
)
|
||||
|
||||
@cached()
|
||||
def get_presence_state(self, user_localpart):
|
||||
return self._simple_select_one(
|
||||
table="presence",
|
||||
@ -44,9 +41,8 @@ class PresenceStore(SQLBaseStore):
|
||||
desc="get_presence_state",
|
||||
)
|
||||
|
||||
@defer.inlineCallbacks
|
||||
def set_presence_state(self, user_localpart, new_state):
|
||||
ret = yield self._simple_update_one(
|
||||
return self._simple_update_one(
|
||||
table="presence",
|
||||
keyvalues={"user_id": user_localpart},
|
||||
updatevalues={"state": new_state["state"],
|
||||
@ -54,8 +50,6 @@ class PresenceStore(SQLBaseStore):
|
||||
"mtime": self._clock.time_msec()},
|
||||
desc="set_presence_state",
|
||||
)
|
||||
self.get_presence_state.invalidate(user_localpart)
|
||||
defer.returnValue(ret)
|
||||
|
||||
def allow_presence_visible(self, observed_localpart, observer_userid):
|
||||
return self._simple_insert(
|
||||
|
Loading…
Reference in New Issue
Block a user