Skip to content

Commit 70419f2

Browse files
pipiland2612amol-verma-allen
authored andcommitted
Move pkg/adjuster to cmd/query/app/querysvc/internal/adjuster (jaegertracing#6956)
## Which problem is this PR solving? - part of jaegertracing#6869 ## Description of the changes - moved `pkg/adjuster` to `cmd/query/app/querysvc/internal/adjuster` ## How was this change tested? - changes have passed all tests of the project ## 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: pipiland <[email protected]> Signed-off-by: amol-verma-allen <[email protected]>
1 parent 173fdb0 commit 70419f2

23 files changed

+3
-7
lines changed

cmd/query/app/querysvc/adjusters.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ package querysvc
77
import (
88
"time"
99

10-
"github.com/jaegertracing/jaeger/model/adjuster"
10+
"github.com/jaegertracing/jaeger/cmd/query/app/querysvc/internal/adjuster"
1111
)
1212

1313
// StandardAdjusters is a list of model adjusters applied by the query service

model/adjuster/adjuster_test.go renamed to cmd/query/app/querysvc/internal/adjuster/adjuster_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"github.com/stretchr/testify/assert"
1111

1212
"github.com/jaegertracing/jaeger-idl/model/v1"
13-
"github.com/jaegertracing/jaeger/model/adjuster"
13+
"github.com/jaegertracing/jaeger/cmd/query/app/querysvc/internal/adjuster"
1414
)
1515

1616
func TestSequences(t *testing.T) {

0 commit comments

Comments
 (0)