mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
1) Fixed an issue where the binary path is not correctly parsed for version 9.6. Fixes #6534
2) Added the default binary path in the container. 3) Fixed the typo in the documentation.
This commit is contained in:
@@ -322,6 +322,8 @@ def set_binary_path(binary_path, bin_paths, server_type,
|
||||
# Get the version number by splitting the result string
|
||||
version_number = \
|
||||
version_string.split(") ", 1)[1].split('.', 1)[0]
|
||||
elif version_number.find('.'):
|
||||
version_number = version_number.split('.', 1)[0]
|
||||
|
||||
# Get the paths array based on server type
|
||||
if 'pg_bin_paths' in bin_paths or 'as_bin_paths' in bin_paths:
|
||||
|
||||
Reference in New Issue
Block a user