Skip to content

Commit

Permalink
fix: call MakeNamespaceKeyInScheduler function error (#2383)
Browse files Browse the repository at this point in the history
Signed-off-by: zhoulizhen <2313464078@qq.com>
  • Loading branch information
zhoulizhen committed May 25, 2023
1 parent b9c9b95 commit 1a11fc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/redis/redis.go
Expand Up @@ -115,7 +115,7 @@ func MakeNamespaceKeyInScheduler(namespace string) string {

// MakeKeyInScheduler make key in scheduler.
func MakeKeyInScheduler(namespace, id string) string {
return fmt.Sprintf("%s:%s", MakeNamespaceKeyInManager(namespace), id)
return fmt.Sprintf("%s:%s", MakeNamespaceKeyInScheduler(namespace), id)
}

// MakeNetworkTopologyKeyInScheduler make network topology key in scheduler.
Expand Down

0 comments on commit 1a11fc2

Please sign in to comment.