We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9386fd5 commit b606a8fCopy full SHA for b606a8f
1 file changed
postgresql/test/test_connect.py
@@ -80,13 +80,19 @@ def configure_cluster(self):
80
if has_ipv6:
81
listen_addresses += ',::1'
82
83
+ if self.cluster.installation.version_info >= (10, 0):
84
+ pwe = 'md5'
85
+ else:
86
+ pwe = 'on'
87
+
88
self.cluster.settings.update(dict(
89
port = str(self.cluster_port),
90
max_connections = '6',
91
shared_buffers = '24',
92
listen_addresses = listen_addresses,
93
log_destination = 'stderr',
94
log_min_messages = 'FATAL',
95
+ password_encryption = pwe,
96
))
97
98
if self.disable_replication:
0 commit comments