Skip to content

Commit

Permalink
Updates Backoff
Browse files Browse the repository at this point in the history
  • Loading branch information
ldez authored and traefiker committed Feb 4, 2019
1 parent 0561a20 commit f19c497
Show file tree
Hide file tree
Showing 32 changed files with 47 additions and 46 deletions.
11 changes: 6 additions & 5 deletions Gopkg.lock

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

4 changes: 2 additions & 2 deletions Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@
version = "1.13.11"

[[constraint]]
branch = "master"
name = "github.com/cenk/backoff"
name = "github.com/cenkalti/backoff"
version = "2.1.1"

[[constraint]]
name = "github.com/containous/flaeg"
Expand Down
2 changes: 1 addition & 1 deletion acme/acme.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
"time"

"github.com/BurntSushi/ty/fun"
"github.com/cenk/backoff"
"github.com/cenkalti/backoff"
"github.com/containous/mux"
"github.com/containous/staert"
"github.com/containous/traefik/cluster"
Expand Down
2 changes: 1 addition & 1 deletion acme/challenge_http_provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"sync"
"time"

"github.com/cenk/backoff"
"github.com/cenkalti/backoff"
"github.com/containous/traefik/cluster"
"github.com/containous/traefik/log"
"github.com/containous/traefik/safe"
Expand Down
2 changes: 1 addition & 1 deletion acme/challenge_tls_provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"sync"
"time"

"github.com/cenk/backoff"
"github.com/cenkalti/backoff"
"github.com/containous/traefik/cluster"
"github.com/containous/traefik/log"
"github.com/containous/traefik/safe"
Expand Down
2 changes: 1 addition & 1 deletion cluster/datastore.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"time"

"github.com/abronan/valkeyrie/store"
"github.com/cenk/backoff"
"github.com/cenkalti/backoff"
"github.com/containous/staert"
"github.com/containous/traefik/job"
"github.com/containous/traefik/log"
Expand Down
2 changes: 1 addition & 1 deletion cluster/leadership.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"net/http"
"time"

"github.com/cenk/backoff"
"github.com/cenkalti/backoff"
"github.com/containous/mux"
"github.com/containous/traefik/log"
"github.com/containous/traefik/old/types"
Expand Down
2 changes: 1 addition & 1 deletion cmd/traefik/traefik.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"strings"
"time"

"github.com/cenk/backoff"
"github.com/cenkalti/backoff"
"github.com/containous/flaeg"
"github.com/containous/staert"
"github.com/containous/traefik/autogen/genstatic"
Expand Down
2 changes: 1 addition & 1 deletion job/job.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package job
import (
"time"

"github.com/cenk/backoff"
"github.com/cenkalti/backoff"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion job/job_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"testing"
"time"

"github.com/cenk/backoff"
"github.com/cenkalti/backoff"
)

func TestJobBackOff(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion old/provider/consulcatalog/consul_catalog.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"time"

"github.com/BurntSushi/ty/fun"
"github.com/cenk/backoff"
"github.com/cenkalti/backoff"
"github.com/containous/traefik/job"
"github.com/containous/traefik/old/log"
"github.com/containous/traefik/old/provider"
Expand Down
2 changes: 1 addition & 1 deletion old/provider/dynamodb/dynamodb.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"github.com/aws/aws-sdk-go/service/dynamodb"
"github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute"
"github.com/aws/aws-sdk-go/service/dynamodb/dynamodbiface"
"github.com/cenk/backoff"
"github.com/cenkalti/backoff"
"github.com/containous/traefik/job"
"github.com/containous/traefik/old/log"
"github.com/containous/traefik/old/provider"
Expand Down
2 changes: 1 addition & 1 deletion old/provider/ecs/ecs.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/ecs"
"github.com/cenk/backoff"
"github.com/cenkalti/backoff"
"github.com/containous/traefik/job"
"github.com/containous/traefik/old/log"
"github.com/containous/traefik/old/provider"
Expand Down
2 changes: 1 addition & 1 deletion old/provider/eureka/eureka.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"time"

"github.com/ArthurHlt/go-eureka-client/eureka"
"github.com/cenk/backoff"
"github.com/cenkalti/backoff"
"github.com/containous/flaeg/parse"
"github.com/containous/traefik/job"
"github.com/containous/traefik/old/log"
Expand Down
2 changes: 1 addition & 1 deletion old/provider/kubernetes/kubernetes.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"text/template"
"time"

"github.com/cenk/backoff"
"github.com/cenkalti/backoff"
"github.com/containous/traefik/job"
"github.com/containous/traefik/old/log"
"github.com/containous/traefik/old/provider"
Expand Down
2 changes: 1 addition & 1 deletion old/provider/kv/kv.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

"github.com/abronan/valkeyrie"
"github.com/abronan/valkeyrie/store"
"github.com/cenk/backoff"
"github.com/cenkalti/backoff"
"github.com/containous/traefik/job"
"github.com/containous/traefik/old/log"
"github.com/containous/traefik/old/provider"
Expand Down
2 changes: 1 addition & 1 deletion old/provider/mesos/mesos.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"strings"
"time"

"github.com/cenk/backoff"
"github.com/cenkalti/backoff"
"github.com/containous/traefik/job"
"github.com/containous/traefik/old/log"
"github.com/containous/traefik/old/provider"
Expand Down
2 changes: 1 addition & 1 deletion old/provider/rancher/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"os"
"time"

"github.com/cenk/backoff"
"github.com/cenkalti/backoff"
"github.com/containous/traefik/job"
"github.com/containous/traefik/old/log"
"github.com/containous/traefik/old/types"
Expand Down
2 changes: 1 addition & 1 deletion old/provider/rancher/metadata.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"
"time"

"github.com/cenk/backoff"
"github.com/cenkalti/backoff"
"github.com/containous/traefik/job"
"github.com/containous/traefik/old/log"
"github.com/containous/traefik/old/types"
Expand Down
2 changes: 1 addition & 1 deletion provider/acme/challenge_http.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"net/http"
"time"

"github.com/cenk/backoff"
"github.com/cenkalti/backoff"
"github.com/containous/mux"
"github.com/containous/traefik/log"
"github.com/containous/traefik/safe"
Expand Down
2 changes: 1 addition & 1 deletion provider/acme/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"sync"
"time"

"github.com/cenk/backoff"
"github.com/cenkalti/backoff"
"github.com/containous/flaeg/parse"
"github.com/containous/traefik/config"
"github.com/containous/traefik/log"
Expand Down
2 changes: 1 addition & 1 deletion provider/docker/docker.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"text/template"
"time"

"github.com/cenk/backoff"
"github.com/cenkalti/backoff"
"github.com/containous/traefik/config"
"github.com/containous/traefik/job"
"github.com/containous/traefik/log"
Expand Down
2 changes: 1 addition & 1 deletion provider/marathon/marathon.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"text/template"
"time"

"github.com/cenk/backoff"
"github.com/cenkalti/backoff"
"github.com/containous/flaeg/parse"
"github.com/containous/traefik/config"
"github.com/containous/traefik/job"
Expand Down
2 changes: 1 addition & 1 deletion safe/routine.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"runtime/debug"
"sync"

"github.com/cenk/backoff"
"github.com/cenkalti/backoff"
"github.com/containous/traefik/log"
)

Expand Down
2 changes: 1 addition & 1 deletion safe/routine_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"testing"
"time"

"github.com/cenk/backoff"
"github.com/cenkalti/backoff"
)

func TestNewPoolContext(t *testing.T) {
Expand Down
File renamed without changes.
File renamed without changes.

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

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

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

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

File renamed without changes.

0 comments on commit f19c497

Please sign in to comment.