Skip to content

Commit 5ab9c9d

Browse files
authored
Fix baserow_backend management command by correctly using pg3 name (baserow#4355)
1 parent bd072d1 commit 5ab9c9d

2 files changed

Lines changed: 10 additions & 1 deletion

File tree

backend/src/baserow/core/management/backup/backup_runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ def _build_connection(self):
158158
return psycopg.connect(
159159
host=self.host,
160160
port=self.port,
161-
database=self.database,
161+
dbname=self.database,
162162
user=self.username,
163163
)
164164

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"type": "bug",
3+
"message": "Fix backup_baserow management command by using correct pg3 dbname.",
4+
"issue_origin": "github",
5+
"issue_number": 4308,
6+
"domain": "core",
7+
"bullet_points": [],
8+
"created_at": "2025-11-28"
9+
}

0 commit comments

Comments
 (0)