mirror of https://github.com/jumpserver/jumpserver
perf: 修改同名账号登录报错
parent
ca026040fe
commit
a38624d198
|
@ -73,7 +73,11 @@ class Account(AbsConnectivity, LabeledMixin, BaseAccount):
|
|||
]
|
||||
|
||||
def __str__(self):
|
||||
return '{}({})'.format(self.name, self.asset.name)
|
||||
if self.asset_id:
|
||||
host = self.asset.name
|
||||
else:
|
||||
host = 'Dynamic'
|
||||
return '{}({})'.format(self.name, host)
|
||||
|
||||
@lazyproperty
|
||||
def platform(self):
|
||||
|
|
|
@ -301,7 +301,7 @@ class Applet(JMSBaseModel):
|
|||
'account': account,
|
||||
'lock_key': lock_key
|
||||
}
|
||||
logger.debug('Select host and account: {}'.format(res))
|
||||
logger.debug('Select host and account: {}-{}'.format(host.name, account.username))
|
||||
return res
|
||||
|
||||
def delete(self, using=None, keep_parents=False):
|
||||
|
|
Loading…
Reference in New Issue