81 lines
2.3 KiB
Diff
81 lines
2.3 KiB
Diff
From bed55580f972cc08209357fce5589fefadf398af Mon Sep 17 00:00:00 2001
|
|
From: Jan Chaloupka <jchaloup@redhat.com>
|
|
Date: Tue, 17 May 2016 21:44:45 +0200
|
|
Subject: [PATCH] change import paths
|
|
|
|
---
|
|
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 +-
|
|
5 files changed, 5 insertions(+), 5 deletions(-)
|
|
|
|
diff --git a/tools/benchmark/cmd/put.go b/tools/benchmark/cmd/put.go
|
|
index 5f92dd6..557d3f5 100644
|
|
--- a/tools/benchmark/cmd/put.go
|
|
+++ b/tools/benchmark/cmd/put.go
|
|
@@ -24,7 +24,7 @@ import (
|
|
v3 "github.com/coreos/etcd/clientv3"
|
|
"github.com/spf13/cobra"
|
|
"golang.org/x/net/context"
|
|
- "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 6e67e96..89a5f66 100644
|
|
--- a/tools/benchmark/cmd/range.go
|
|
+++ b/tools/benchmark/cmd/range.go
|
|
@@ -22,7 +22,7 @@ import (
|
|
v3 "github.com/coreos/etcd/clientv3"
|
|
"github.com/spf13/cobra"
|
|
"golang.org/x/net/context"
|
|
- "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 a40731b..a7678c2 100644
|
|
--- a/tools/benchmark/cmd/root.go
|
|
+++ b/tools/benchmark/cmd/root.go
|
|
@@ -19,7 +19,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 ce29637..ac677fd 100644
|
|
--- a/tools/benchmark/cmd/stm.go
|
|
+++ b/tools/benchmark/cmd/stm.go
|
|
@@ -25,7 +25,7 @@ import (
|
|
v3sync "github.com/coreos/etcd/clientv3/concurrency"
|
|
"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 cd20251..376ee74 100644
|
|
--- a/tools/benchmark/cmd/watch.go
|
|
+++ b/tools/benchmark/cmd/watch.go
|
|
@@ -26,7 +26,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
|
|
--
|
|
1.9.3
|
|
|