1) Added 'load_balance_hosts' connection string parameter for PG 16 and above. #6802

2) Added EPAS 11 support back as its EOL is in November.
This commit is contained in:
Akshay Joshi
2023-10-04 17:54:56 +05:30
parent 0b3c79865e
commit 9666bd6c8d
6 changed files with 12 additions and 6 deletions

View File

@@ -490,6 +490,10 @@ export default class ServerSchema extends BaseUISchema {
'vartype': 'enum',
'enumvals': [gettext('any'), gettext('read-write'), gettext('read-only'),
gettext('primary'), gettext('standby'), gettext('prefer-standby')]
}, {
'value': 'load_balance_hosts', 'label': gettext('Load balance hosts'),
'vartype': 'enum', 'min_server_version': '16',
'enumvals': [gettext('disable'), gettext('random')]
}];
}
}