feat(agent): Add uint support in cli test output (#15433)
This commit is contained in:
parent
d42e407ab7
commit
a92d443a5b
|
|
@ -974,7 +974,7 @@ func (a *Agent) Test(ctx context.Context, wait time.Duration) error {
|
||||||
wg.Add(1)
|
wg.Add(1)
|
||||||
go func() {
|
go func() {
|
||||||
defer wg.Done()
|
defer wg.Done()
|
||||||
s := &influx.Serializer{SortFields: true}
|
s := &influx.Serializer{SortFields: true, UintSupport: true}
|
||||||
for metric := range src {
|
for metric := range src {
|
||||||
octets, err := s.Serialize(metric)
|
octets, err := s.Serialize(metric)
|
||||||
if err == nil {
|
if err == nil {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue