Remove caching when returning lots, devices, fixes UI issue 18
This commit is contained in:
parent
fea6f23c0c
commit
61fd9de477
|
@ -92,7 +92,7 @@ class DeviceView(View):
|
|||
description: The device or devices.
|
||||
"""
|
||||
return super().get(id)
|
||||
|
||||
|
||||
def patch(self, id):
|
||||
dev = Device.query.filter_by(id=id).one()
|
||||
if isinstance(dev, Computer):
|
||||
|
@ -109,7 +109,7 @@ class DeviceView(View):
|
|||
db.session.commit()
|
||||
return Response(status=204)
|
||||
raise ValueError('Cannot patch a non computer')
|
||||
|
||||
|
||||
def one(self, id: int):
|
||||
"""Gets one device."""
|
||||
if not request.authorization:
|
||||
|
@ -127,7 +127,7 @@ class DeviceView(View):
|
|||
return self.schema.jsonify(device)
|
||||
|
||||
@auth.Auth.requires_auth
|
||||
@cache(datetime.timedelta(minutes=1))
|
||||
# @cache(datetime.timedelta(minutes=1))
|
||||
def find(self, args: dict):
|
||||
"""Gets many devices."""
|
||||
# Compute query
|
||||
|
|
|
@ -59,7 +59,7 @@ class LotView(View):
|
|||
lot = Lot.query.filter_by(id=id).one() # type: Lot
|
||||
return self.schema.jsonify(lot, nested=2)
|
||||
|
||||
@teal.cache.cache(datetime.timedelta(minutes=5))
|
||||
# @teal.cache.cache(datetime.timedelta(minutes=5))
|
||||
def find(self, args: dict):
|
||||
"""Gets lots.
|
||||
|
||||
|
|
Reference in New Issue