1) Fixed an issue where Query history is not getting loaded with an external database. #5781

2) Change the datatype of the value column of the setting table to text instead of a string. #5746
3) Fixed an issue where the key 'passfile' is not found. #4728
This commit is contained in:
Akshay Joshi
2023-01-30 15:38:36 +05:30
parent fd1c26408b
commit ea3dffe78d
5 changed files with 15 additions and 7 deletions

View File

@@ -1147,7 +1147,7 @@ class ServerNode(PGChildNodeView):
password = encrypt(password, crypt_key)
elif 'passfile' in data['connection_params'] and \
data['connection_params']['passfile'] != '':
passfile = data['passfile']
passfile = data['connection_params']['passfile']
if 'tunnel_password' in data and data["tunnel_password"] != '':
have_tunnel_password = True