Skip to content

Commit

Permalink
Merge pull request #19269 from fuweid/test-robustness-list
Browse files Browse the repository at this point in the history
tests/robustness: continue should ignore last key
  • Loading branch information
serathius authored Jan 27, 2025
2 parents f98fa31 + 564e362 commit e757a45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/robustness/traffic/kubernetes.go
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ func (t kubernetesTraffic) Read(ctx context.Context, kc kubernetes.Interface, s
}
hasMore = resp.Count > int64(len(resp.Kvs))
if hasMore {
cont = string(kvs[len(kvs)-1].Key)
cont = string(kvs[len(kvs)-1].Key) + "\x00"
}
}
s.Reset(revision, kvs)
Expand Down

0 comments on commit e757a45

Please sign in to comment.