Skip to content

Commit

Permalink
fix 333
Browse files Browse the repository at this point in the history
  • Loading branch information
ymakedaq committed Sep 26, 2024
1 parent de82a6d commit eca6130
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbm-ui/backend/flow/utils/mysql/mysql_act_playload.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,10 +213,10 @@ def deal_mysql_config(self, db_version: str, origin_configs: dict, init_configs:
cfg["mysqld"].update(origin_configs)
if db_version >= "5.7.0":
cfg = self.deal_with_upgrade_to_mysql57(cfg)
is_community = False
if db_version >= "8.0.0":
# 这里应该是社区版本等非Tendb数据库的版本需要处理的参数
# 介质管理暂未记录介质来源属性
is_community = False
if db_version >= "8.0.30":
is_community = True
cfg = self.deal_with_upgrade_to_mysql80(is_community=is_community, cfg=cfg)
Expand Down

0 comments on commit eca6130

Please sign in to comment.