Skip to content

Commit

Permalink
fix source comment
Browse files Browse the repository at this point in the history
  • Loading branch information
ncode committed Nov 27, 2023
1 parent 498031e commit 3b3f092
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/aclmanager/aclmanager.go
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ func listAcls(client *redis.Client) (acls []string, err error) {
func syncAcls(source *redis.Client, destination *redis.Client) (deleted []string, err error) {
sourceAcls, err := listAcls(source)
if err != nil {
return nil, fmt.Errorf("error listing master acls: %v", err)
return nil, fmt.Errorf("error listing source acls: %v", err)
}

destinationAcls, err := listAcls(destination)
Expand Down

0 comments on commit 3b3f092

Please sign in to comment.