Skip to content

Commit

Permalink
fix(redis): tendisplus原地变更赋值错误bug #6895
Browse files Browse the repository at this point in the history
  • Loading branch information
lukemakeit committed Sep 12, 2024
1 parent 8d329a8 commit 202401a
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ def redis_rebalance_slots_4_expansion(root_id: str, flow_data: dict, act_kwargs:
sub_pipeline.add_act(
act_name=_("元数据更新"),
act_component_code=RedisDBMetaComponent.code,
kwargs=asdict(cluster_kwargs),
kwargs=asdict(dbmeta_kwargs),
)
# ###元数据加入集群完成

Expand Down Expand Up @@ -505,4 +505,6 @@ def redis_rebalance_slots_4_expansion(root_id: str, flow_data: dict, act_kwargs:
kwargs=asdict(record_kwargs),
)

return sub_pipeline.build_sub_process(sub_name=_("迁移slots扩容{}".format(predixy_kwargs.cluster["immute_domain"])))
return sub_pipeline.build_sub_process(
sub_name=_("迁移slots扩容{}".format(predixy_kwargs.cluster["immute_domain"]))
)

0 comments on commit 202401a

Please sign in to comment.