mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2024-11-04 18:53:10 +00:00
refactor(backups): rename force_snapshot_reload to force_snapshot_cache_reload
This commit is contained in:
parent
3551813b34
commit
6004977845
|
@ -292,7 +292,7 @@ class Backups:
|
||||||
# TODO: the oldest snapshots will get expired faster than the new ones.
|
# TODO: the oldest snapshots will get expired faster than the new ones.
|
||||||
# How to detect that the end is missing?
|
# How to detect that the end is missing?
|
||||||
|
|
||||||
Backups.force_snapshot_reload()
|
Backups.force_snapshot_cache_reload()
|
||||||
return Storage.get_cached_snapshots()
|
return Storage.get_cached_snapshots()
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
|
@ -302,13 +302,13 @@ class Backups:
|
||||||
return snap
|
return snap
|
||||||
|
|
||||||
# Possibly our cache entry got invalidated, let's try one more time
|
# Possibly our cache entry got invalidated, let's try one more time
|
||||||
Backups.force_snapshot_reload()
|
Backups.force_snapshot_cache_reload()
|
||||||
snap = Storage.get_cached_snapshot_by_id(id)
|
snap = Storage.get_cached_snapshot_by_id(id)
|
||||||
|
|
||||||
return snap
|
return snap
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def force_snapshot_reload():
|
def force_snapshot_cache_reload():
|
||||||
upstream_snapshots = Backups.provider().backupper.get_snapshots()
|
upstream_snapshots = Backups.provider().backupper.get_snapshots()
|
||||||
Storage.invalidate_snapshot_storage()
|
Storage.invalidate_snapshot_storage()
|
||||||
for snapshot in upstream_snapshots:
|
for snapshot in upstream_snapshots:
|
||||||
|
|
|
@ -157,7 +157,7 @@ class BackupMutations:
|
||||||
@strawberry.mutation(permission_classes=[IsAuthenticated])
|
@strawberry.mutation(permission_classes=[IsAuthenticated])
|
||||||
def force_snapshots_reload(self) -> GenericMutationReturn:
|
def force_snapshots_reload(self) -> GenericMutationReturn:
|
||||||
"""Force snapshots reload"""
|
"""Force snapshots reload"""
|
||||||
Backups.force_snapshot_reload()
|
Backups.force_snapshot_cache_reload()
|
||||||
return GenericMutationReturn(
|
return GenericMutationReturn(
|
||||||
success=True,
|
success=True,
|
||||||
code=200,
|
code=200,
|
||||||
|
|
Loading…
Reference in a new issue