From 766f9db17c63448c50fd7c0eea1b2bb01b06a99e Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Sun, 24 May 2026 12:04:08 -0400 Subject: [PATCH] [tasks] Use no-blobs for backups --- vrobbler/apps/scrobbles/tasks.py | 1 + 1 file changed, 1 insertion(+) diff --git a/vrobbler/apps/scrobbles/tasks.py b/vrobbler/apps/scrobbles/tasks.py index b8b552f..18d87e7 100644 --- a/vrobbler/apps/scrobbles/tasks.py +++ b/vrobbler/apps/scrobbles/tasks.py @@ -362,6 +362,7 @@ def backup_database(): pg_dump_cmd = [ "pg_dump", + "--no-blobs", "-h", db.get("HOST", "localhost"), "-U", db.get("USER", "postgres"), "-d", db["NAME"],