Fix to avro reader

This commit is contained in:
Aditya Ujeniya
2025-10-27 20:44:40 +01:00
parent 856ccbb969
commit 44e98e8f2f
5 changed files with 73 additions and 7 deletions

View File

@@ -7,7 +7,6 @@ package memorystore
import (
"errors"
"fmt"
"sync"
"github.com/ClusterCockpit/cc-lib/schema"
@@ -188,8 +187,6 @@ func (b *buffer) read(from, to int64, data []schema.Float) ([]schema.Float, int6
i++
}
fmt.Printf("Given From : %d, To: %d\n", from, to)
return data[:i], from, t, nil
}