Skip to content

Commit

Permalink
fix(frontend): dumper手动迁移参数修复问题 TencentBlueKing#8244
Browse files Browse the repository at this point in the history
  • Loading branch information
jinquantianxia committed Nov 28, 2024
1 parent caf92f0 commit e29e90b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dbm-ui/frontend/src/types/auto-imports.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,6 @@ declare global {
// for type re-export
declare global {
// @ts-ignore
export type { Component, ComponentPublicInstance, ComputedRef, ExtractDefaultPropTypes, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, VNode, WritableComputedRef } from 'vue'
export type { Component, ComponentPublicInstance, ComputedRef, DirectiveBinding, ExtractDefaultPropTypes, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, MaybeRef, MaybeRefOrGetter, VNode, WritableComputedRef } from 'vue'
import('vue')
}
Original file line number Diff line number Diff line change
Expand Up @@ -199,12 +199,12 @@
is_safe: true,
infos: [
{
cluster_id: props.data.source_cluster.id,
cluster_id: props.data.cluster_id,
switch_instances: [
{
dumper_instance_id: props.data.id,
host: props.data.source_cluster.master_ip,
port: props.data.source_cluster.master_port,
host: props.data.ip,
port: props.data.listen_port,
repl_binlog_file: formModel.binlog_file,
repl_binlog_pos: formModel.binlog_pos,
},
Expand Down

0 comments on commit e29e90b

Please sign in to comment.