Skip to content

Commit

Permalink
Make the binary connector the default (#339)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathan-s committed Dec 13, 2020
1 parent f38626e commit b8d4e2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dbbackup/db/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
CONNECTOR_MAPPING = {
'django.db.backends.sqlite3': 'dbbackup.db.sqlite.SqliteConnector',
'django.db.backends.mysql': 'dbbackup.db.mysql.MysqlDumpConnector',
'django.db.backends.postgresql': 'dbbackup.db.postgresql.PgDumpConnector',
'django.db.backends.postgresql_psycopg2': 'dbbackup.db.postgresql.PgDumpConnector',
'django.db.backends.postgresql': 'dbbackup.db.postgresql.PgDumpBinaryConnector',
'django.db.backends.postgresql_psycopg2': 'dbbackup.db.postgresql.PgDumpBinaryConnector',
'django.db.backends.oracle': None,
'django_mongodb_engine': 'dbbackup.db.mongodb.MongoDumpConnector',
'djongo': 'dbbackup.db.mongodb.MongoDumpConnector',
Expand Down

0 comments on commit b8d4e2b

Please sign in to comment.