Skip to content

Commit 3a2269f

Browse files
authored
fix: fix the wrong error return value (#223)
Signed-off-by: rustco <[email protected]>
1 parent b3d31ac commit 3a2269f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/admin/zkclient.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -944,7 +944,7 @@ func (c *ZKAdminClient) getTopic(
944944
for i := 0; i < len(zkTopicInfo.Partitions); i++ {
945945
partitionResp := <-partitionRespChan
946946
if partitionResp.err != nil {
947-
return topicInfo, err
947+
return topicInfo, partitionResp.err
948948
}
949949
topicInfo.Partitions = append(
950950
topicInfo.Partitions,

0 commit comments

Comments
 (0)