mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Always make sure - we convert the psasword to string in the as_dict
function.
This commit is contained in:
committed by
Ashesh Vashi
parent
cc91a538e0
commit
14839bf5de
@@ -1049,7 +1049,7 @@ class ServerManager(object):
|
||||
|
||||
res = dict()
|
||||
res['sid'] = self.sid
|
||||
res['password'] = self.password
|
||||
res['password'] = str(self.password)
|
||||
|
||||
connections = res['connections'] = dict()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user