Skip to content

Commit

Permalink
First batch for beta3 (#542)
Browse files Browse the repository at this point in the history
* Update dependencies

* Fix metrics test now that tally adds + for tags

* Re-generate Cherami mocks

* Remove interfacer, run lint

* ^2 cherami
  • Loading branch information
glibsm committed Jul 5, 2017
1 parent 75ea3fd commit fbc0309
Show file tree
Hide file tree
Showing 15 changed files with 148 additions and 84 deletions.
2 changes: 0 additions & 2 deletions .build/deps.mk
Expand Up @@ -16,8 +16,6 @@ deps: libdeps
$(ECHO_V)go install ./vendor/github.com/kisielk/errcheck
@$(call label,Installing md-to-godoc...)
$(ECHO_V)go install ./vendor/github.com/sectioneight/md-to-godoc
@$(call label,Installing interfacer...)
$(ECHO_V)go install ./vendor/github.com/mvdan/interfacer/cmd/interfacer
@$(call label,Installing richgo...)
$(ECHO_V)go install ./vendor/github.com/kyoh86/richgo

Expand Down
2 changes: 0 additions & 2 deletions .build/lint.mk
Expand Up @@ -17,8 +17,6 @@ lint:
$(ECHO_V)rm -rf $(LINT_LOG)
@echo "Installing test dependencies for vet..."
$(ECHO_V)go test -i $(PKGS)
@echo "Running interfacer..."
$(ECHO_V)interfacer $(LIST_PKGS) | tee -a $(LINT_LOG)
@echo "Checking formatting..."
$(ECHO_V)gofmt -d -s $(PKG_FILES) 2>&1 | tee $(LINT_LOG)
@echo "Checking vet..."
Expand Down
4 changes: 2 additions & 2 deletions config/doc.go
Expand Up @@ -33,7 +33,7 @@
//
// Nesting
//
// The configuration system wraps a set of *providers* that each know how to get
// The configuration system wraps a set of providers that each know how to get
// values from an underlying source:
//
//
Expand Down Expand Up @@ -108,7 +108,7 @@
// be useful, so UberFx treats them specially. Dynamic configuration providers
// conform to the
// Provider interface, but they're instantiated
// **after** the Static Providers on order to read bootstrap values.
// after the Static Providers on order to read bootstrap values.
//
// For example, if you were to implement a ZooKeeper-backed
// Provider, you'd likely need to specify (via YAML or environment
Expand Down
2 changes: 1 addition & 1 deletion doc.go
Expand Up @@ -57,7 +57,7 @@
//
// Service Model
//
// A service is a container for a set of **modules** and controls their lifecycle.
// A service is a container for a set of modules and controls their lifecycle.
// A service can have any number of modules, each responsible for a specific type
// of functionality, such as a Kafka message ingestion, exposing an HTTP server,
// or a set of RPC service endpoints.
Expand Down
142 changes: 96 additions & 46 deletions glide.lock

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

13 changes: 4 additions & 9 deletions glide.yaml
Expand Up @@ -3,21 +3,21 @@ import:
- package: go.uber.org/zap
version: ^1
- package: github.com/uber-go/tally
version: ^2.1.0
version: ^3.0.2
- package: github.com/gorilla/mux
version: ^1.1.0
- package: github.com/gorilla/context
version: ^1.1.0
- package: go.uber.org/yarpc
version: ^v1.4.0
version: ^1
- package: go.uber.org/dig
version: ~0.1
- package: go.uber.org/thriftrw
version: ^1
- package: github.com/go-validator/validator
version: v2
- package: github.com/pkg/errors
version: ^0.8.0
version: ~0.8.0
- package: github.com/getsentry/raven-go
version: master
- package: github.com/uber/jaeger-client-go
Expand All @@ -27,11 +27,7 @@ import:
- assert
- require
- package: github.com/uber/cherami-client-go
version: ^v0.1.0
subpackages:
- client/cherami
- common
- common/metrics
version: ^2
- package: github.com/uber/cherami-thrift
subpackages:
- .generated/go/cherami
Expand Down Expand Up @@ -66,7 +62,6 @@ testImport:
- package: github.com/russross/blackfriday
version: 2
- package: github.com/shurcooL/sanitized_anchor_name
- package: github.com/mvdan/interfacer/cmd/interfacer
- package: github.com/kyoh86/richgo
- package: go.uber.org/tools
subpackages:
Expand Down

0 comments on commit fbc0309

Please sign in to comment.