Skip to content

Commit

Permalink
Reflect package change
Browse files Browse the repository at this point in the history
Signed-off-by: Pavol Loffay <[email protected]>
  • Loading branch information
pavolloffay committed Aug 11, 2021
1 parent e1f0388 commit f9ce592
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ GOBUILD=CGO_ENABLED=0 installsuffix=cgo go build -trimpath
TOOLS_MOD_DIR = ./internal/tools
JAEGER_VERSION ?= 1.24.0

DOCKER_REPO ?= ghcr.io/pavolloffay/jaeger-clickhouse
DOCKER_REPO ?= ghcr.io/jaegertracing/jaeger-clickhouse
DOCKER_TAG ?= latest

.PHONY: build
Expand All @@ -28,7 +28,7 @@ run-hotrod:
.PHONY: fmt
fmt:
go fmt ./...
goimports -w -local github.com/pavolloffay/jaeger-clickhouse ./
goimports -w -local github.com/jaegertracing/jaeger-clickhouse ./

.PHONY: lint
lint:
Expand Down
2 changes: 1 addition & 1 deletion cmd/jaeger-clickhouse/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
"github.com/prometheus/client_golang/prometheus/promhttp"
"gopkg.in/yaml.v3"

"github.com/pavolloffay/jaeger-clickhouse/storage"
"github.com/jaegertracing/jaeger-clickhouse/storage"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/pavolloffay/jaeger-clickhouse
module github.com/jaegertracing/jaeger-clickhouse

go 1.16

Expand Down
2 changes: 1 addition & 1 deletion guide-kubernetes.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ spec:
storage:
type: grpc-plugin
grpcPlugin:
image: ghcr.io/pavolloffay/jaeger-clickhouse:0.5.1
image: ghcr.io/jaegertracing/jaeger-clickhouse:0.7.0
options:
grpc-storage-plugin:
binary: /plugin/jaeger-clickhouse
Expand Down
2 changes: 1 addition & 1 deletion internal/tools/go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/pavolloffay/jaeger-clickhouse/internal/tools
module github.com/jaegertracing/jaeger-clickhouse/internal/tools

go 1.16

Expand Down
2 changes: 1 addition & 1 deletion storage/clickhousespanstore/writer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
"github.com/gogo/protobuf/proto"
"github.com/jaegertracing/jaeger/model"

"github.com/pavolloffay/jaeger-clickhouse/storage/clickhousespanstore/mocks"
"github.com/jaegertracing/jaeger-clickhouse/storage/clickhousespanstore/mocks"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion storage/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package storage
import (
"time"

"github.com/pavolloffay/jaeger-clickhouse/storage/clickhousespanstore"
"github.com/jaegertracing/jaeger-clickhouse/storage/clickhousespanstore"
)

type EncodingType string
Expand Down
2 changes: 1 addition & 1 deletion storage/config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"testing"

"github.com/pavolloffay/jaeger-clickhouse/storage/clickhousespanstore"
"github.com/jaegertracing/jaeger-clickhouse/storage/clickhousespanstore"

"github.com/stretchr/testify/assert"
)
Expand Down
6 changes: 3 additions & 3 deletions storage/store.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@ import (
"path/filepath"
"sort"

jaegerclickhouse "github.com/pavolloffay/jaeger-clickhouse"
jaegerclickhouse "github.com/jaegertracing/jaeger-clickhouse"

"github.com/ClickHouse/clickhouse-go"
"github.com/hashicorp/go-hclog"
"github.com/jaegertracing/jaeger/plugin/storage/grpc/shared"
"github.com/jaegertracing/jaeger/storage/dependencystore"
"github.com/jaegertracing/jaeger/storage/spanstore"

"github.com/pavolloffay/jaeger-clickhouse/storage/clickhousedependencystore"
"github.com/pavolloffay/jaeger-clickhouse/storage/clickhousespanstore"
"github.com/jaegertracing/jaeger-clickhouse/storage/clickhousedependencystore"
"github.com/jaegertracing/jaeger-clickhouse/storage/clickhousespanstore"
)

type Store struct {
Expand Down

0 comments on commit f9ce592

Please sign in to comment.