Return an error message when backup's not ready
This commit is contained in:
@@ -412,7 +412,7 @@ class BackupView(views.APIView):
|
|||||||
|
|
||||||
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
|
||||||
raise Http404()
|
return Response('Today\'s backup not ready yet', status=400)
|
||||||
|
|
||||||
backup_url = 'https://static.{}/backups/{}'.format(
|
backup_url = 'https://static.{}/backups/{}'.format(
|
||||||
settings.PRODUCTION_HOST,
|
settings.PRODUCTION_HOST,
|
||||||
|
Reference in New Issue
Block a user