Increase backup logging
This commit is contained in:
parent
8454a8faf6
commit
127ce130a4
|
@ -513,14 +513,18 @@ class BackupView(views.APIView):
|
||||||
backup_user = secrets.BACKUP_TOKENS.get(auth_token, None)
|
backup_user = secrets.BACKUP_TOKENS.get(auth_token, None)
|
||||||
|
|
||||||
if backup_user:
|
if backup_user:
|
||||||
|
logger.info('Backup user: ' + backup_user['name'])
|
||||||
backup_path = cache.get(backup_user['cache_key'], None)
|
backup_path = cache.get(backup_user['cache_key'], None)
|
||||||
|
|
||||||
if not backup_path:
|
if not backup_path:
|
||||||
|
logger.error('Backup not found')
|
||||||
raise Http404
|
raise Http404
|
||||||
|
|
||||||
if str(now().date()) not in backup_path:
|
if str(now().date()) not in backup_path:
|
||||||
# sanity check - make sure it's actually today's backup
|
# sanity check - make sure it's actually today's backup
|
||||||
return Response('Today\'s backup not ready yet', status=400)
|
msg = 'Today\'s backup not ready yet'
|
||||||
|
logger.error(msg)
|
||||||
|
return Response(msg, status=503)
|
||||||
|
|
||||||
backup_url = 'https://static.{}/backups/{}'.format(
|
backup_url = 'https://static.{}/backups/{}'.format(
|
||||||
settings.PRODUCTION_HOST,
|
settings.PRODUCTION_HOST,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user