Skip to content

Commit

Permalink
fix(mongodb): 迁移元数据修复密码保存 TencentBlueKing#8129
Browse files Browse the repository at this point in the history
  • Loading branch information
yyhenryyy committed Nov 22, 2024
1 parent e399964 commit ebe2f58
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions dbm-ui/backend/flow/utils/mongodb/migrate_meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,8 @@ def save_app_password(self):
operator="admin",
)
if info != "":
logger.error("user:{} save password to db fail, error:{}".format(user, info))
logger.error("user:{} save password:{} to db fail, error:{}".format(user, self.info[user], info))
return False

def save_password(self):
"""保存密码到密码服务"""
Expand All @@ -146,7 +147,12 @@ def save_password(self):
operator=self.info["operator"],
)
if result:
logger.error("save password fail, error: {}".format(result))
logger.error(
"nodes:{} save user:{} password:{} fail, error: {}".format(
password_info["nodes"], username, password_info["password"][username], result
)
)
return False

def change_domain_app(self):
"""修改dns的app字段"""
Expand Down

0 comments on commit ebe2f58

Please sign in to comment.