Blob Blame History Raw
From 71992717744ac018f5551289ca5bb2f0aafe477d Mon Sep 17 00:00:00 2001
From: Jan Chaloupka <jchaloup@redhat.com>
Date: Mon, 23 Jan 2017 12:54:00 +0100
Subject: [PATCH] change import path

---
 tools/benchmark/cmd/lease.go         | 2 +-
 tools/benchmark/cmd/put.go           | 2 +-
 tools/benchmark/cmd/range.go         | 2 +-
 tools/benchmark/cmd/root.go          | 2 +-
 tools/benchmark/cmd/stm.go           | 2 +-
 tools/benchmark/cmd/watch.go         | 2 +-
 tools/benchmark/cmd/watch_get.go     | 2 +-
 tools/benchmark/cmd/watch_latency.go | 2 +-
 8 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/tools/benchmark/cmd/lease.go b/tools/benchmark/cmd/lease.go
index 4c21f9f..b057105 100644
--- a/tools/benchmark/cmd/lease.go
+++ b/tools/benchmark/cmd/lease.go
@@ -23,7 +23,7 @@ import (
 
 	"github.com/spf13/cobra"
 	"golang.org/x/net/context"
-	"gopkg.in/cheggaaa/pb.v1"
+	"github.com/cheggaaa/pb"
 )
 
 var leaseKeepaliveCmd = &cobra.Command{
diff --git a/tools/benchmark/cmd/put.go b/tools/benchmark/cmd/put.go
index 57d8564..6896af2 100644
--- a/tools/benchmark/cmd/put.go
+++ b/tools/benchmark/cmd/put.go
@@ -28,7 +28,7 @@ import (
 	"github.com/spf13/cobra"
 	"golang.org/x/net/context"
 	"golang.org/x/time/rate"
-	"gopkg.in/cheggaaa/pb.v1"
+	"github.com/cheggaaa/pb"
 )
 
 // putCmd represents the put command
diff --git a/tools/benchmark/cmd/range.go b/tools/benchmark/cmd/range.go
index 1a83d22..cf1eb31 100644
--- a/tools/benchmark/cmd/range.go
+++ b/tools/benchmark/cmd/range.go
@@ -26,7 +26,7 @@ import (
 	"github.com/spf13/cobra"
 	"golang.org/x/net/context"
 	"golang.org/x/time/rate"
-	"gopkg.in/cheggaaa/pb.v1"
+	"github.com/cheggaaa/pb"
 )
 
 // rangeCmd represents the range command
diff --git a/tools/benchmark/cmd/root.go b/tools/benchmark/cmd/root.go
index e37e87c..2659966 100644
--- a/tools/benchmark/cmd/root.go
+++ b/tools/benchmark/cmd/root.go
@@ -21,7 +21,7 @@ import (
 	"github.com/coreos/etcd/pkg/transport"
 
 	"github.com/spf13/cobra"
-	"gopkg.in/cheggaaa/pb.v1"
+	"github.com/cheggaaa/pb"
 )
 
 // This represents the base command when called without any subcommands
diff --git a/tools/benchmark/cmd/stm.go b/tools/benchmark/cmd/stm.go
index 7f98ed1..b816ad2 100644
--- a/tools/benchmark/cmd/stm.go
+++ b/tools/benchmark/cmd/stm.go
@@ -27,7 +27,7 @@ import (
 
 	"github.com/spf13/cobra"
 	"golang.org/x/net/context"
-	"gopkg.in/cheggaaa/pb.v1"
+	"github.com/cheggaaa/pb"
 )
 
 // stmCmd represents the STM benchmark command
diff --git a/tools/benchmark/cmd/watch.go b/tools/benchmark/cmd/watch.go
index b73e4f2..c60af37 100644
--- a/tools/benchmark/cmd/watch.go
+++ b/tools/benchmark/cmd/watch.go
@@ -27,7 +27,7 @@ import (
 
 	"github.com/spf13/cobra"
 	"golang.org/x/net/context"
-	"gopkg.in/cheggaaa/pb.v1"
+	"github.com/cheggaaa/pb"
 )
 
 // watchCmd represents the watch command
diff --git a/tools/benchmark/cmd/watch_get.go b/tools/benchmark/cmd/watch_get.go
index 3eb4a1b..1c0fd16 100644
--- a/tools/benchmark/cmd/watch_get.go
+++ b/tools/benchmark/cmd/watch_get.go
@@ -24,7 +24,7 @@ import (
 
 	"github.com/spf13/cobra"
 	"golang.org/x/net/context"
-	"gopkg.in/cheggaaa/pb.v1"
+	"github.com/cheggaaa/pb"
 )
 
 // watchGetCmd represents the watch command
diff --git a/tools/benchmark/cmd/watch_latency.go b/tools/benchmark/cmd/watch_latency.go
index 0f1f5db..a2cb806 100644
--- a/tools/benchmark/cmd/watch_latency.go
+++ b/tools/benchmark/cmd/watch_latency.go
@@ -25,7 +25,7 @@ import (
 	"github.com/spf13/cobra"
 	"golang.org/x/net/context"
 	"golang.org/x/time/rate"
-	"gopkg.in/cheggaaa/pb.v1"
+	"github.com/cheggaaa/pb"
 )
 
 // watchLatencyCmd represents the watch latency command
-- 
2.7.4