Skip to content

Commit

Permalink
fix(mysql): 补充修复mysql备份单据参数问题 TencentBlueKing#6911
Browse files Browse the repository at this point in the history
  • Loading branch information
xfwduke committed Sep 13, 2024
1 parent 01965ec commit 1e8fe6a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dbm-ui/backend/flow/utils/mysql/mysql_act_playload.py
Original file line number Diff line number Diff line change
Expand Up @@ -1862,9 +1862,9 @@ def mysql_backup_demand_payload(self, **kwargs):
"shard_id": self.ticket_data.get("shard_id", 0),
"backup_file_tag": self.ticket_data.get("file_tag", ""),
"db_patterns": self.ticket_data.get("db_patterns", ["*"]),
"ignore_dbs": self.ticket_data.get("ignore_dbs", ""),
"ignore_dbs": self.ticket_data.get("ignore_dbs", []),
"table_patterns": self.ticket_data.get("table_patterns", ["*"]),
"ignore_tables": self.ticket_data.get("ignore_tables", ""),
"ignore_tables": self.ticket_data.get("ignore_tables", []),
},
},
}
Expand Down

0 comments on commit 1e8fe6a

Please sign in to comment.