Skip to content

Commit

Permalink
Merge pull request #161 from ipfs/uci/update-go
Browse files Browse the repository at this point in the history
ci: uci/update-go
  • Loading branch information
galargh authored Aug 26, 2024
2 parents dc1a2ed + c00abf7 commit 295cd87
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ The following emojis are used to highlight certain changes:
### Added

### Changed
- Updated Go in go.mod to 1.22

### Removed

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/ipfs/rainbow

go 1.21
go 1.22

require (
github.com/coreos/go-systemd/v22 v22.5.0
Expand Down
1 change: 0 additions & 1 deletion internal/fd/sys_unix.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
//go:build linux || darwin
// +build linux darwin

// Package fd provides filesystem descriptor count for different architectures.
package fd
Expand Down
3 changes: 2 additions & 1 deletion tracing.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,14 @@ package main

import (
"context"
"strings"

"github.com/ipfs/boxo/tracing"
"go.opentelemetry.io/otel/sdk/resource"
"go.opentelemetry.io/otel/sdk/trace"
semconv "go.opentelemetry.io/otel/semconv/v1.4.0"
traceapi "go.opentelemetry.io/otel/trace"
tracenoop "go.opentelemetry.io/otel/trace/noop"
"strings"
)

func newTracerProvider(ctx context.Context, traceFraction float64) (traceapi.TracerProvider, func(context.Context) error, error) {
Expand Down

0 comments on commit 295cd87

Please sign in to comment.