Bump OpenTelemetry to v1.11.1

Signed-off-by: Luca Comellini <luca.com@gmail.com>
This commit is contained in:
Luca Comellini
2022-11-10 20:34:17 -08:00
parent f226fa895e
commit b829e6f2d3
112 changed files with 2415 additions and 4409 deletions

View File

@@ -935,7 +935,7 @@ func (s *stRingBuffer) Add(a string) {
// next most recent, and so on. If such an element doesn't exist then ok is
// false.
func (s *stRingBuffer) NthPreviousEntry(n int) (value string, ok bool) {
if n < 0 || n >= s.size {
if n >= s.size {
return "", false
}
index := s.head - n