remove delete_old_cached_tiles task because new caching does not need this

This commit is contained in:
Laura Klünder 2017-10-24 18:14:35 +02:00
parent 6b6e3afa7b
commit 506b959946
2 changed files with 0 additions and 21 deletions

View file

@ -1,18 +0,0 @@
import os
from django.conf import settings
from c3nav.celery import app
@app.task()
def delete_old_cached_tiles(*args, **kwargs):
from c3nav.mapdata.models import MapUpdate
cache_key = MapUpdate.current_cache_key()
for folder in os.listdir(settings.TILES_ROOT):
if folder == cache_key:
continue
fullpath = os.path.join(settings.TILES_ROOT, folder)
if os.path.isdir(fullpath):
os.system('rm -rf '+fullpath)