Skip to content

Commit

Permalink
Update imports to monorepo (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
cw9 authored and robskillington committed Feb 25, 2019
1 parent ebc74d5 commit d6c57b1
Show file tree
Hide file tree
Showing 13 changed files with 123 additions and 109 deletions.
156 changes: 87 additions & 69 deletions src/ctl/glide.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 3 additions & 7 deletions src/ctl/glide.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
package: github.com/m3db/m3ctl

import:
- package: github.com/m3db/m3cluster
version: 53fc512c11e1ed03db2d65dac4c139a3c2ff2eda
- package: github.com/m3db/m3metrics
version: dcfe68fe112095f688cbaa1b0aa4c4ac65922e84
- package: github.com/m3db/m3
version: 16e2dfb2206a8ead03f733a7032b1bc2b83d4b93
- package: github.com/m3db/m3x
version: a5cc485300c733558a25e1e6c5e9dcf4dbc241c4
version: 943173a151c8a6b2da1f93f814c27c4e4a1e2050
- package: github.com/apache/thrift
version: 9549b25c77587b29be4e0b5c258221a4ed85d37a
- package: github.com/beorn7/perks
Expand All @@ -17,8 +15,6 @@ import:
version: 1.7.3
- package: gopkg.in/validator.v2
version: 3e4f037f12a1221a0864cf0dd2e81c452ab22448
- package: gopkg.in/yaml.v2
version: a83829b6f1293c91addabc89d0571c246397bbf4
- package: github.com/facebookgo/clock
version: 600d898af40aa09a7a93ecb9265d87b0504b6f03
- package: github.com/ghodss/yaml
Expand Down
2 changes: 1 addition & 1 deletion src/ctl/service/r2/io.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import (
"reflect"
"strings"

"github.com/m3db/m3metrics/rules/view/changes"
"github.com/m3db/m3/src/metrics/rules/view/changes"

validator "gopkg.in/go-playground/validator.v9"
)
Expand Down
2 changes: 1 addition & 1 deletion src/ctl/service/r2/routes.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (
"fmt"
"net/http"

"github.com/m3db/m3metrics/rules/view"
"github.com/m3db/m3/src/metrics/rules/view"

"github.com/gorilla/mux"
)
Expand Down
6 changes: 3 additions & 3 deletions src/ctl/service/r2/routes_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ import (
"testing"
"time"

"github.com/m3db/m3/src/metrics/rules"
"github.com/m3db/m3/src/metrics/rules/view"
"github.com/m3db/m3/src/metrics/rules/view/changes"
"github.com/m3db/m3ctl/auth"
"github.com/m3db/m3ctl/service/r2/store"
"github.com/m3db/m3metrics/rules"
"github.com/m3db/m3metrics/rules/view"
"github.com/m3db/m3metrics/rules/view/changes"
"github.com/m3db/m3x/clock"
"github.com/m3db/m3x/instrument"

Expand Down
2 changes: 1 addition & 1 deletion src/ctl/service/r2/store/kv/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ package kv
import (
"time"

"github.com/m3db/m3metrics/rules"
"github.com/m3db/m3/src/metrics/rules"
"github.com/m3db/m3x/clock"
"github.com/m3db/m3x/instrument"
)
Expand Down
8 changes: 4 additions & 4 deletions src/ctl/service/r2/store/kv/store.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ import (
"errors"
"fmt"

merrors "github.com/m3db/m3/src/metrics/errors"
"github.com/m3db/m3/src/metrics/rules"
"github.com/m3db/m3/src/metrics/rules/view"
"github.com/m3db/m3/src/metrics/rules/view/changes"
"github.com/m3db/m3ctl/service/r2"
r2store "github.com/m3db/m3ctl/service/r2/store"
merrors "github.com/m3db/m3metrics/errors"
"github.com/m3db/m3metrics/rules"
"github.com/m3db/m3metrics/rules/view"
"github.com/m3db/m3metrics/rules/view/changes"
"github.com/m3db/m3x/clock"
xerrors "github.com/m3db/m3x/errors"
)
Expand Down
14 changes: 7 additions & 7 deletions src/ctl/service/r2/store/kv/store_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ import (
"testing"
"time"

"github.com/m3db/m3/src/metrics/aggregation"
merrors "github.com/m3db/m3/src/metrics/errors"
"github.com/m3db/m3/src/metrics/pipeline"
"github.com/m3db/m3/src/metrics/policy"
"github.com/m3db/m3/src/metrics/rules"
"github.com/m3db/m3/src/metrics/rules/view"
"github.com/m3db/m3/src/metrics/rules/view/changes"
"github.com/m3db/m3ctl/service/r2"
r2store "github.com/m3db/m3ctl/service/r2/store"
"github.com/m3db/m3metrics/aggregation"
merrors "github.com/m3db/m3metrics/errors"
"github.com/m3db/m3metrics/pipeline"
"github.com/m3db/m3metrics/policy"
"github.com/m3db/m3metrics/rules"
"github.com/m3db/m3metrics/rules/view"
"github.com/m3db/m3metrics/rules/view/changes"
"github.com/m3db/m3x/clock"

"github.com/golang/mock/gomock"
Expand Down
4 changes: 2 additions & 2 deletions src/ctl/service/r2/store/store.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
package store

import (
"github.com/m3db/m3metrics/rules/view"
"github.com/m3db/m3metrics/rules/view/changes"
"github.com/m3db/m3/src/metrics/rules/view"
"github.com/m3db/m3/src/metrics/rules/view/changes"
)

// Store is a construct that can perform operations against a backing rule store.
Expand Down
4 changes: 2 additions & 2 deletions src/ctl/service/r2/store/store_mock.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions src/ctl/service/r2/store/stub/store.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ import (
"fmt"
"time"

"github.com/m3db/m3/src/metrics/aggregation"
"github.com/m3db/m3/src/metrics/pipeline"
"github.com/m3db/m3/src/metrics/policy"
"github.com/m3db/m3/src/metrics/rules/view"
"github.com/m3db/m3/src/metrics/rules/view/changes"
"github.com/m3db/m3/src/metrics/x/bytes"
"github.com/m3db/m3ctl/service/r2"
r2store "github.com/m3db/m3ctl/service/r2/store"
"github.com/m3db/m3metrics/aggregation"
"github.com/m3db/m3metrics/pipeline"
"github.com/m3db/m3metrics/policy"
"github.com/m3db/m3metrics/rules/view"
"github.com/m3db/m3metrics/rules/view/changes"
"github.com/m3db/m3metrics/x/bytes"
"github.com/m3db/m3x/instrument"

"github.com/pborman/uuid"
Expand Down
Loading

0 comments on commit d6c57b1

Please sign in to comment.