mirror of
https://github.com/superseriousbusiness/gotosocial
synced 2025-06-05 21:59:39 +02:00
[chore]: Bump go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp from 1.17.0 to 1.18.0 (#2207)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
4
vendor/google.golang.org/grpc/shared_buffer_pool.go
generated
vendored
4
vendor/google.golang.org/grpc/shared_buffer_pool.go
generated
vendored
@ -109,7 +109,7 @@ const (
|
||||
|
||||
type simpleSharedBufferChildPool interface {
|
||||
Get(size int) []byte
|
||||
Put(interface{})
|
||||
Put(any)
|
||||
}
|
||||
|
||||
type bufferPool struct {
|
||||
@ -133,7 +133,7 @@ func (p *bufferPool) Get(size int) []byte {
|
||||
func newBytesPool(size int) simpleSharedBufferChildPool {
|
||||
return &bufferPool{
|
||||
Pool: sync.Pool{
|
||||
New: func() interface{} {
|
||||
New: func() any {
|
||||
bs := make([]byte, size)
|
||||
return &bs
|
||||
},
|
||||
|
Reference in New Issue
Block a user