mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fixed 'No password supplied' error occurring on auto-detected servers.
This commit is contained in:
committed by
Akshay Joshi
parent
c8a2057410
commit
b7c0914f33
@@ -184,7 +184,7 @@ class Server(db.Model):
|
||||
tunnel_identity_file = db.Column(db.String(64), nullable=True)
|
||||
tunnel_password = db.Column(db.String(64), nullable=True)
|
||||
shared = db.Column(db.Boolean(), nullable=False)
|
||||
kerberos_conn = db.Column(db.Boolean(), nullable=False)
|
||||
kerberos_conn = db.Column(db.Boolean(), nullable=False, default=0)
|
||||
|
||||
@property
|
||||
def serialize(self):
|
||||
|
||||
Reference in New Issue
Block a user