Use 'postgresql' prefix with SQLAlchemy instead of 'postgres'
This commit is contained in:
parent
187171d790
commit
f67b702cf5
3 changed files with 3 additions and 3 deletions
|
@ -21,7 +21,7 @@ pid_file: /run/mailman3/master.pid
|
||||||
|
|
||||||
[database]
|
[database]
|
||||||
class: mailman.database.postgresql.PostgreSQLDatabase
|
class: mailman.database.postgresql.PostgreSQLDatabase
|
||||||
url: postgres://mailmanadmin:{{ mailman_mailman_db_pass }}@{{ mailman_db_server }}/mailman
|
url: postgresql://mailmanadmin:{{ mailman_mailman_db_pass }}@{{ mailman_db_server }}/mailman
|
||||||
|
|
||||||
[archiver.hyperkitty]
|
[archiver.hyperkitty]
|
||||||
class: hyperkitty.archiver.Archiver
|
class: hyperkitty.archiver.Archiver
|
||||||
|
|
|
@ -354,7 +354,7 @@ APP_NAME = 'Fedora list archives'
|
||||||
USE_INTERNAL_AUTH = False
|
USE_INTERNAL_AUTH = False
|
||||||
|
|
||||||
# URL to the KittyStore database
|
# URL to the KittyStore database
|
||||||
KITTYSTORE_URL = 'postgres://kittystoreapp:{{ mailman_kittystore_db_pass }}@{{ mailman_db_server }}/kittystore'
|
KITTYSTORE_URL = 'postgresql://kittystoreapp:{{ mailman_kittystore_db_pass }}@{{ mailman_db_server }}/kittystore'
|
||||||
# Path to the KittyStore search index (writable directory)
|
# Path to the KittyStore search index (writable directory)
|
||||||
KITTYSTORE_SEARCH_INDEX = '{{ mailman_webui_basedir }}/kittystore_search_index'
|
KITTYSTORE_SEARCH_INDEX = '{{ mailman_webui_basedir }}/kittystore_search_index'
|
||||||
|
|
||||||
|
|
|
@ -21,4 +21,4 @@ DATABASES = {
|
||||||
'PORT': '',
|
'PORT': '',
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
KITTYSTORE_URL = 'postgres://kittystoreadmin:{{ mailman_kittystore_admin_db_pass }}@{{ mailman_db_server }}/kittystore'
|
KITTYSTORE_URL = 'postgresql://kittystoreadmin:{{ mailman_kittystore_admin_db_pass }}@{{ mailman_db_server }}/kittystore'
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue