Skip to content

Commit 359c550

Browse files
danish9039amol-verma-allen
authored andcommitted
moved pkg/hostname to internal/hostname (jaegertracing#6886)
<!-- !! Please DELETE this comment before posting. We appreciate your contribution to the Jaeger project! πŸ‘‹πŸŽ‰ --> ## Which problem is this PR solving? - part of jaegertracing#6869 ## Description of the changes - moved `pkg/hostname` to` internal/hostname` ## How was this change tested? - ## Checklist - [ ] I have read https://github.com/jaegertracing/jaeger/blob/master/CONTRIBUTING_GUIDELINES.md - [ ] I have signed all commits - [ ] I have added unit tests for the new functionality - [ ] 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: danish9039 <[email protected]> Signed-off-by: hippie-danish <[email protected]>
1 parent d179ac0 commit 359c550

File tree

4 files changed

+2
-2
lines changed

4 files changed

+2
-2
lines changed
File renamed without changes.

β€Žinternal/sampling/samplingstrategy/adaptive/aggregator.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ import (
1111
"go.uber.org/zap"
1212

1313
span_model "github.com/jaegertracing/jaeger-idl/model/v1"
14+
"github.com/jaegertracing/jaeger/internal/hostname"
1415
"github.com/jaegertracing/jaeger/internal/leaderelection"
1516
"github.com/jaegertracing/jaeger/internal/sampling/samplingstrategy"
1617
"github.com/jaegertracing/jaeger/internal/storage/v1/api/samplingstore"
1718
"github.com/jaegertracing/jaeger/internal/storage/v1/api/samplingstore/model"
18-
"github.com/jaegertracing/jaeger/pkg/hostname"
1919
"github.com/jaegertracing/jaeger/pkg/metrics"
2020
)
2121

β€Žinternal/storage/v1/cassandra/factory.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ import (
1515
"go.opentelemetry.io/otel/trace"
1616
"go.uber.org/zap"
1717

18+
"github.com/jaegertracing/jaeger/internal/hostname"
1819
cLock "github.com/jaegertracing/jaeger/internal/storage/distributedlock/cassandra"
1920
"github.com/jaegertracing/jaeger/internal/storage/v1"
2021
"github.com/jaegertracing/jaeger/internal/storage/v1/api/dependencystore"
@@ -30,7 +31,6 @@ import (
3031
"github.com/jaegertracing/jaeger/pkg/cassandra/config"
3132
gocqlw "github.com/jaegertracing/jaeger/pkg/cassandra/gocql"
3233
"github.com/jaegertracing/jaeger/pkg/distributedlock"
33-
"github.com/jaegertracing/jaeger/pkg/hostname"
3434
"github.com/jaegertracing/jaeger/pkg/metrics"
3535
)
3636

0 commit comments

Comments
Β (0)