Skip to content

Commit

Permalink
freezing into backoff v3.1.1 (#13)
Browse files Browse the repository at this point in the history
* freezing into backoff v3.1.1, fixes #11 (i think)
* adding a cute coveralls badge
  • Loading branch information
andresvia committed Feb 21, 2020
1 parent 42bd72f commit 9523ff2
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 7 deletions.
7 changes: 6 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
language: go

go:
- 1.13
- 1.13
before_install:
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
script:
- $HOME/gopath/bin/goveralls -service=travis-ci
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

[![travis ci](https://api.travis-ci.org/Autodesk/go-awsecs.svg?branch=master)](https://travis-ci.org/Autodesk/go-awsecs)

[![coverage status](https://coveralls.io/repos/github/Autodesk/go-awsecs/badge.svg?branch=master)](https://coveralls.io/github/Autodesk/go-awsecs?branch=master)

Library and tools for AWS ECS operations.

# contributing
Expand Down
2 changes: 1 addition & 1 deletion asg.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"github.com/aws/aws-sdk-go/service/autoscaling/autoscalingiface"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/ecs"
"github.com/cenkalti/backoff/v3"
"github.com/cenkalti/backoff"
"log"
"strings"
"sync"
Expand Down
2 changes: 1 addition & 1 deletion cmd/enforce-aws-ecs-asg-launchconfig/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"github.com/aws/aws-sdk-go/service/autoscaling"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/ecs"
"github.com/cenkalti/backoff/v3"
"github.com/cenkalti/backoff"
"log"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/update-aws-ecs-service/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/ecs"
"github.com/cenkalti/backoff/v3"
"github.com/cenkalti/backoff"
"log"
"os"
"strings"
Expand Down
2 changes: 1 addition & 1 deletion ecs-alter-service.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"errors"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/service/ecs"
"github.com/cenkalti/backoff/v3"
"github.com/cenkalti/backoff"
"log"
)

Expand Down
2 changes: 1 addition & 1 deletion ecs.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"errors"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/service/ecs"
"github.com/cenkalti/backoff/v3"
"github.com/cenkalti/backoff"
"log"
"reflect"
)
Expand Down
4 changes: 3 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@ go 1.13

require (
github.com/aws/aws-sdk-go v1.20.21
github.com/cenkalti/backoff/v3 v3.1.1
github.com/cenkalti/backoff v0.0.0-00010101000000-000000000000
github.com/sergi/go-diff v1.0.0
github.com/stretchr/testify v1.5.1 // indirect
golang.org/x/net v0.0.0-20200219183655-46282727080f // indirect
)

replace github.com/cenkalti/backoff => github.com/cenkalti/backoff/v3 v3.1.1

0 comments on commit 9523ff2

Please sign in to comment.