|
|
634469 |
From bed55580f972cc08209357fce5589fefadf398af Mon Sep 17 00:00:00 2001
|
|
|
634469 |
From: Jan Chaloupka <jchaloup@redhat.com>
|
|
|
634469 |
Date: Tue, 17 May 2016 21:44:45 +0200
|
|
|
634469 |
Subject: [PATCH] change import paths
|
|
|
634469 |
|
|
|
634469 |
---
|
|
|
634469 |
tools/benchmark/cmd/put.go | 2 +-
|
|
|
634469 |
tools/benchmark/cmd/range.go | 2 +-
|
|
|
634469 |
tools/benchmark/cmd/root.go | 2 +-
|
|
|
634469 |
tools/benchmark/cmd/stm.go | 2 +-
|
|
|
634469 |
tools/benchmark/cmd/watch.go | 2 +-
|
|
|
634469 |
5 files changed, 5 insertions(+), 5 deletions(-)
|
|
|
634469 |
|
|
|
634469 |
diff --git a/tools/benchmark/cmd/put.go b/tools/benchmark/cmd/put.go
|
|
|
634469 |
index 5f92dd6..557d3f5 100644
|
|
|
634469 |
--- a/tools/benchmark/cmd/put.go
|
|
|
634469 |
+++ b/tools/benchmark/cmd/put.go
|
|
|
634469 |
@@ -24,7 +24,7 @@ import (
|
|
|
634469 |
v3 "github.com/coreos/etcd/clientv3"
|
|
|
634469 |
"github.com/spf13/cobra"
|
|
|
634469 |
"golang.org/x/net/context"
|
|
|
634469 |
- "gopkg.in/cheggaaa/pb.v1"
|
|
|
634469 |
+ "github.com/cheggaaa/pb"
|
|
|
634469 |
)
|
|
|
634469 |
|
|
|
634469 |
// putCmd represents the put command
|
|
|
634469 |
diff --git a/tools/benchmark/cmd/range.go b/tools/benchmark/cmd/range.go
|
|
|
634469 |
index 6e67e96..89a5f66 100644
|
|
|
634469 |
--- a/tools/benchmark/cmd/range.go
|
|
|
634469 |
+++ b/tools/benchmark/cmd/range.go
|
|
|
634469 |
@@ -22,7 +22,7 @@ import (
|
|
|
634469 |
v3 "github.com/coreos/etcd/clientv3"
|
|
|
634469 |
"github.com/spf13/cobra"
|
|
|
634469 |
"golang.org/x/net/context"
|
|
|
634469 |
- "gopkg.in/cheggaaa/pb.v1"
|
|
|
634469 |
+ "github.com/cheggaaa/pb"
|
|
|
634469 |
)
|
|
|
634469 |
|
|
|
634469 |
// rangeCmd represents the range command
|
|
|
634469 |
diff --git a/tools/benchmark/cmd/root.go b/tools/benchmark/cmd/root.go
|
|
|
634469 |
index a40731b..a7678c2 100644
|
|
|
634469 |
--- a/tools/benchmark/cmd/root.go
|
|
|
634469 |
+++ b/tools/benchmark/cmd/root.go
|
|
|
634469 |
@@ -19,7 +19,7 @@ import (
|
|
|
634469 |
|
|
|
634469 |
"github.com/coreos/etcd/pkg/transport"
|
|
|
634469 |
"github.com/spf13/cobra"
|
|
|
634469 |
- "gopkg.in/cheggaaa/pb.v1"
|
|
|
634469 |
+ "github.com/cheggaaa/pb"
|
|
|
634469 |
)
|
|
|
634469 |
|
|
|
634469 |
// This represents the base command when called without any subcommands
|
|
|
634469 |
diff --git a/tools/benchmark/cmd/stm.go b/tools/benchmark/cmd/stm.go
|
|
|
634469 |
index ce29637..ac677fd 100644
|
|
|
634469 |
--- a/tools/benchmark/cmd/stm.go
|
|
|
634469 |
+++ b/tools/benchmark/cmd/stm.go
|
|
|
634469 |
@@ -25,7 +25,7 @@ import (
|
|
|
634469 |
v3sync "github.com/coreos/etcd/clientv3/concurrency"
|
|
|
634469 |
"github.com/spf13/cobra"
|
|
|
634469 |
"golang.org/x/net/context"
|
|
|
634469 |
- "gopkg.in/cheggaaa/pb.v1"
|
|
|
634469 |
+ "github.com/cheggaaa/pb"
|
|
|
634469 |
)
|
|
|
634469 |
|
|
|
634469 |
// stmCmd represents the STM benchmark command
|
|
|
634469 |
diff --git a/tools/benchmark/cmd/watch.go b/tools/benchmark/cmd/watch.go
|
|
|
634469 |
index cd20251..376ee74 100644
|
|
|
634469 |
--- a/tools/benchmark/cmd/watch.go
|
|
|
634469 |
+++ b/tools/benchmark/cmd/watch.go
|
|
|
634469 |
@@ -26,7 +26,7 @@ import (
|
|
|
634469 |
|
|
|
634469 |
"github.com/spf13/cobra"
|
|
|
634469 |
"golang.org/x/net/context"
|
|
|
634469 |
- "gopkg.in/cheggaaa/pb.v1"
|
|
|
634469 |
+ "github.com/cheggaaa/pb"
|
|
|
634469 |
)
|
|
|
634469 |
|
|
|
634469 |
// watchCmd represents the watch command
|
|
|
634469 |
--
|
|
|
634469 |
1.9.3
|
|
|
634469 |
|