Skip to content

Commit

Permalink
fix: 数据恢复流程安装周边选择下发安装包 #6808
Browse files Browse the repository at this point in the history
  • Loading branch information
zfrendo committed Sep 10, 2024
1 parent e06613a commit 4e90c12
Show file tree
Hide file tree
Showing 8 changed files with 0 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,6 @@ def deploy_migrate_cluster_flow(self, use_for_upgrade=False):
slave_ip_list=[self.data["new_slave_ip"], self.data["new_master_ip"]],
root_id=self.root_id,
parent_global_data=copy.deepcopy(self.data),
is_init=True,
collect_sysinfo=True,
cluster_type=ClusterType.TenDBHA.value,
db_backup_pkg_type=MysqlVersionToDBBackupForMap[self.data["db_version"]],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,6 @@ def migrate_cluster_flow(self, use_for_upgrade=False):
slave_ip_list=[self.data["new_slave_ip"], self.data["new_master_ip"]],
root_id=self.root_id,
parent_global_data=copy.deepcopy(self.data),
is_init=True,
collect_sysinfo=True,
cluster_type=ClusterType.TenDBHA.value,
db_backup_pkg_type=MysqlVersionToDBBackupForMap[self.data["db_version"]],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,6 @@ def deploy_restore_slave_flow(self):
slave_ip_list=[self.data["new_slave_ip"]],
root_id=self.root_id,
parent_global_data=copy.deepcopy(self.data),
is_init=True,
collect_sysinfo=True,
cluster_type=ClusterType.TenDBHA.value,
)
Expand Down Expand Up @@ -571,7 +570,6 @@ def deploy_restore_local_slave_flow(self):
slave_ip_list=[target_slave.machine.ip],
root_id=self.root_id,
parent_global_data=copy.deepcopy(self.data),
is_init=True,
cluster_type=ClusterType.TenDBHA.value,
)
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,6 @@ def tendb_ha_restore_slave_flow(self):
slave_ip_list=[self.data["new_slave_ip"]],
root_id=self.root_id,
parent_global_data=copy.deepcopy(self.data),
is_init=True,
cluster_type=ClusterType.TenDBHA.value,
)
)
Expand Down Expand Up @@ -539,7 +538,6 @@ def restore_local_slave_flow(self):
slave_ip_list=[target_slave.machine.ip],
root_id=self.root_id,
parent_global_data=copy.deepcopy(self.data),
is_init=True,
cluster_type=ClusterType.TenDBHA.value,
)
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,6 @@ def tendb_remote_slave_local_recover(self):
slave_ip_list=[self.data["slave_ip"]],
root_id=self.root_id,
parent_global_data=copy.deepcopy(self.data),
is_init=True,
cluster_type=cluster_class.cluster_type,
)
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,6 @@ def migrate_master_slave_flow(self):
slave_ip_list=[self.data["new_slave_ip"]],
root_id=self.root_id,
parent_global_data=copy.deepcopy(self.data),
is_init=True,
collect_sysinfo=True,
cluster_type=ClusterType.TenDBCluster.value,
is_install_backup=False,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,6 @@ def tendb_remote_slave_recover(self):
slave_ip_list=[self.data["target_ip"]],
root_id=self.root_id,
parent_global_data=copy.deepcopy(self.data),
is_init=True,
collect_sysinfo=True,
cluster_type=ClusterType.TenDBCluster.value,
is_install_backup=False,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,6 @@ def tendb_migrate(self):
slave_ip_list=[node["slave"]["ip"]],
root_id=self.root_id,
parent_global_data=copy.deepcopy(self.data),
is_init=True,
collect_sysinfo=True,
cluster_type=ClusterType.TenDBCluster.value,
is_install_backup=False,
Expand Down

0 comments on commit 4e90c12

Please sign in to comment.