Skip to content

Commit

Permalink
bumped argus to v0.8.0 (#97)
Browse files Browse the repository at this point in the history
* bumped argus to v0.8.0

* updated changelog

* updated go.mod
  • Loading branch information
kristinapathak authored Mar 28, 2022
1 parent 345c320 commit fa1e579
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [v0.3.7]
- Bumped argus to v0.8.0. [#97](https://github.com/xmidt-org/ancla/pull/97)

## [v0.3.6]
- Exported helper functions related to InternalWebhook struct. [#94](https://github.com/xmidt-org/ancla/pull/94)

Expand Down Expand Up @@ -90,7 +93,9 @@ internalWebhooks. [#80](https://github.com/xmidt-org/ancla/pull/80)
## [v0.1.0]
- Initial release

[Unreleased]: https://github.com/xmidt-org/ancla/compare/v0.3.5...HEAD
[Unreleased]: https://github.com/xmidt-org/ancla/compare/v0.3.7...HEAD
[v0.3.7]: https://github.com/xmidt-org/ancla/compare/v0.3.6...v0.3.7
[v0.3.6]: https://github.com/xmidt-org/ancla/compare/v0.3.5...v0.3.6
[v0.3.5]: https://github.com/xmidt-org/ancla/compare/v0.3.4...v0.3.5
[v0.3.4]: https://github.com/xmidt-org/ancla/compare/v0.3.3...v0.3.4
[v0.3.3]: https://github.com/xmidt-org/ancla/compare/v0.3.2...v0.3.3
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ require (
github.com/golang-jwt/jwt v3.2.1+incompatible
github.com/spf13/cast v1.4.1
github.com/stretchr/testify v1.7.0
github.com/xmidt-org/argus v0.6.0
github.com/xmidt-org/argus v0.8.0
github.com/xmidt-org/bascule v0.10.2
github.com/xmidt-org/httpaux v0.2.1
github.com/xmidt-org/webpa-common/v2 v2.0.1
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -703,8 +703,8 @@ github.com/xmidt-org/argus v0.3.10-0.20201105190057-402fede05764/go.mod h1:lnMCV
github.com/xmidt-org/argus v0.3.10-0.20201217204602-66f69b12c498/go.mod h1:lnMCVB/i0gOlUOOd2WbzDDgzTEqP5TipzQ8xKIw+N/I=
github.com/xmidt-org/argus v0.3.12/go.mod h1:T0oHbqQ1SAjE616Q9f1p+7nsmuvmHNoC0zAIUpUiFuE=
github.com/xmidt-org/argus v0.5.1/go.mod h1:cnx+z2O5mwhS/mCtvbVatZhZ8npBQSaXlzDk5RT3SkM=
github.com/xmidt-org/argus v0.6.0 h1:cjAeyILtyGSvUv02e4wEpUdYtgd1EYoFtwfjC5JroQ8=
github.com/xmidt-org/argus v0.6.0/go.mod h1:IRVJlpd8JsoWXhys8o6tFU+dZi9Q6YWTX1Wn3AkyEkI=
github.com/xmidt-org/argus v0.8.0 h1:xYLn9lLNEjR24OiLBrxEsgOzMIb50IFFmagK6TebMqU=
github.com/xmidt-org/argus v0.8.0/go.mod h1:IRVJlpd8JsoWXhys8o6tFU+dZi9Q6YWTX1Wn3AkyEkI=
github.com/xmidt-org/arrange v0.1.9/go.mod h1:PRA8iEZ11L93NsEkDP56x1mZyfDcWxzDULgHj56TaEk=
github.com/xmidt-org/arrange v0.3.0 h1:YNO+1lufCx3EeN17xuSRMC1sci9y9rzZVZ+TkWwq9QE=
github.com/xmidt-org/arrange v0.3.0/go.mod h1:pCHeb93OFA0QnEJ//Mmly7QqUt7y/w3xllK0VQ3Bigo=
Expand Down
2 changes: 1 addition & 1 deletion service.go
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ func Initialize(cfg Config, getLogger func(ctx context.Context) log.Logger, setL
m := &chrysom.Measures{
Polls: cfg.MetricsProvider.NewCounterVec(chrysom.PollCounter),
}
basic, err := chrysom.NewBasicClient(cfg.Argus.BasicClientConfig, getLogger, setLogger)
basic, err := chrysom.NewBasicClient(cfg.Argus.BasicClientConfig, getLogger)
if err != nil {
return nil, nil, fmt.Errorf("failed to create chrysom basic client: %v", err)
}
Expand Down

0 comments on commit fa1e579

Please sign in to comment.