Skip to content

Commit 92246c5

Browse files
authored
[refactor] Move blackhole implementation to internal package (#6647)
## Which problem is this PR solving? - Towards #6637 ## Description of the changes - This PR moves the implementation for blackhole storage from `plugin/storage/` to `internal/storage/` ## How was this change tested? - CI ## Checklist - [x] I have read https://github.com/jaegertracing/jaeger/blob/master/CONTRIBUTING_GUIDELINES.md - [x] I have signed all commits - [x] I have added unit tests for the new functionality - [x] I have run lint and test steps successfully - for `jaeger`: `make lint test` - for `jaeger-ui`: `npm run lint` and `npm run test` --------- Signed-off-by: Mahad Zaryab <[email protected]> Signed-off-by: Mahad Zaryab <[email protected]>
1 parent d590c11 commit 92246c5

File tree

6 files changed

+1
-1
lines changed

6 files changed

+1
-1
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

plugin/storage/factory.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ import (
1515

1616
"github.com/jaegertracing/jaeger/internal/safeexpvar"
1717
"github.com/jaegertracing/jaeger/internal/storage/v1/badger"
18+
"github.com/jaegertracing/jaeger/internal/storage/v1/blackhole"
1819
"github.com/jaegertracing/jaeger/internal/storage/v1/cassandra"
1920
"github.com/jaegertracing/jaeger/internal/storage/v1/es"
2021
"github.com/jaegertracing/jaeger/internal/storage/v1/grpc"
2122
"github.com/jaegertracing/jaeger/internal/storage/v1/memory"
2223
"github.com/jaegertracing/jaeger/pkg/metrics"
2324
"github.com/jaegertracing/jaeger/plugin"
24-
"github.com/jaegertracing/jaeger/plugin/storage/blackhole"
2525
"github.com/jaegertracing/jaeger/plugin/storage/kafka"
2626
"github.com/jaegertracing/jaeger/storage"
2727
"github.com/jaegertracing/jaeger/storage/dependencystore"

0 commit comments

Comments
 (0)