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:
Akshay Joshi
2021-06-15 19:44:54 +05:30
parent 083509eb97
commit 16d2a3096a
3 changed files with 4 additions and 1 deletions

View File

@@ -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: