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 4ff97ea
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 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,9 @@ 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 4ff97ea

Please sign in to comment.