Преглед на файлове

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

Nathan Beals преди 5 години
родител
ревизия
f6407bafcb
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  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 ())