Skip to content

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
felixbarny committed Jan 11, 2025
1 parent 60bc183 commit 16145d2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion exporter/elasticsearchexporter/exporter.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import (
"context"
"errors"
"fmt"
"github.com/open-telemetry/opentelemetry-collector-contrib/exporter/elasticsearchexporter/internal/pool"
"runtime"
"sync"
"time"
Expand All @@ -19,6 +18,8 @@ import (
"go.opentelemetry.io/collector/pdata/pmetric"
"go.opentelemetry.io/collector/pdata/ptrace"
"go.uber.org/zap"

"github.com/open-telemetry/opentelemetry-collector-contrib/exporter/elasticsearchexporter/internal/pool"
)

type elasticsearchExporter struct {
Expand Down
2 changes: 1 addition & 1 deletion exporter/elasticsearchexporter/pdata_serializer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ package elasticsearchexporter
import (
"bytes"
"encoding/json"
"github.com/stretchr/testify/require"
"testing"

"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"go.opentelemetry.io/collector/pdata/pcommon"
"go.opentelemetry.io/collector/pdata/plog"
)
Expand Down

0 comments on commit 16145d2

Please sign in to comment.