mirror of https://github.com/zulip/zulip.git
Fix postgres configuration to use local socket.
(imported from commit 1835e712b2fe4578cf6381891844bb3abe2b767e)
This commit is contained in:
parent
0ec8a7a2f1
commit
939cd864eb
|
@ -72,7 +72,8 @@ DATABASES = {"default": {
|
|||
|
||||
if ENTERPRISE:
|
||||
DATABASES["default"].update({
|
||||
'HOST': 'localhost',
|
||||
# Host = '' => connect through a local socket
|
||||
'HOST': '',
|
||||
'OPTIONS': {
|
||||
'autocommit': True,
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue