X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/4acab1500c713175d90962d78f78dfd8e5966528..74fec3cd8284eae4829dad2c287588d52c621c4b:/services/fuse/arvados_fuse/fresh.py diff --git a/services/fuse/arvados_fuse/fresh.py b/services/fuse/arvados_fuse/fresh.py index 8b680f0663..53214ee94d 100644 --- a/services/fuse/arvados_fuse/fresh.py +++ b/services/fuse/arvados_fuse/fresh.py @@ -2,6 +2,7 @@ # # SPDX-License-Identifier: AGPL-3.0 +from builtins import object import time import ciso8601 import calendar @@ -12,7 +13,7 @@ def convertTime(t): if not t: return 0 try: - return calendar.timegm(ciso8601.parse_datetime_unaware(t).timetuple()) + return calendar.timegm(ciso8601.parse_datetime_as_naive(t).timetuple()) except (TypeError, ValueError): return 0 @@ -59,6 +60,10 @@ class FreshBase(object): * Clear the object contents (invalidates the object) """ + + __slots__ = ("_stale", "_poll", "_last_update", "_atime", "_poll_time", "use_count", + "ref_count", "dead", "cache_size", "cache_uuid", "allow_attr_cache") + def __init__(self): self._stale = True self._poll = False