Browse Source

Remove the `--create` flag, was causing an error

Nathan Beals 5 năm trước cách đây
mục cha
commit
f6407bafcb
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      borgmatic/hooks/postgresql.py

+ 1 - 1
borgmatic/hooks/postgresql.py

@@ -103,7 +103,7 @@ def restore_database_dumps(databases, log_prefix, location_config, dry_run):
         )
         restore_command = (
             ('psql' if all_databases else 'pg_restore', '--no-password')
-            + (('--if-exists', '--exit-on-error', '--clean', '--create', '--dbname', database['name']) if not all_databases else ())
+            + (('--if-exists', '--exit-on-error', '--clean', '--dbname', database['name']) if not all_databases else ())
             + (('--host', database['hostname']) if 'hostname' in database else ())
             + (('--port', str(database['port'])) if 'port' in database else ())
             + (('--username', database['username']) if 'username' in database else ())