mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user