*: update import paths to "go.etcd.io/etcd"

Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
This commit is contained in:
Gyuho Lee
2018-08-28 17:13:25 -07:00
parent 2ac04381a2
commit d37f1521b7
278 changed files with 623 additions and 623 deletions

View File

@@ -19,7 +19,7 @@ import (
"os"
"strings"
"github.com/coreos/etcd/client"
"go.etcd.io/etcd/client"
"github.com/urfave/cli"
)

View File

@@ -23,15 +23,15 @@ import (
"regexp"
"time"
"github.com/coreos/etcd/etcdserver/api/membership"
"github.com/coreos/etcd/etcdserver/api/snap"
"github.com/coreos/etcd/etcdserver/etcdserverpb"
"github.com/coreos/etcd/pkg/fileutil"
"github.com/coreos/etcd/pkg/idutil"
"github.com/coreos/etcd/pkg/pbutil"
"github.com/coreos/etcd/raft/raftpb"
"github.com/coreos/etcd/wal"
"github.com/coreos/etcd/wal/walpb"
"go.etcd.io/etcd/etcdserver/api/membership"
"go.etcd.io/etcd/etcdserver/api/snap"
"go.etcd.io/etcd/etcdserver/etcdserverpb"
"go.etcd.io/etcd/pkg/fileutil"
"go.etcd.io/etcd/pkg/idutil"
"go.etcd.io/etcd/pkg/pbutil"
"go.etcd.io/etcd/raft/raftpb"
"go.etcd.io/etcd/wal"
"go.etcd.io/etcd/wal/walpb"
bolt "github.com/coreos/bbolt"
"github.com/urfave/cli"

View File

@@ -24,7 +24,7 @@ import (
"os/signal"
"time"
"github.com/coreos/etcd/client"
"go.etcd.io/etcd/client"
"github.com/urfave/cli"
)

View File

@@ -19,7 +19,7 @@ import (
"fmt"
"os"
"github.com/coreos/etcd/client"
"go.etcd.io/etcd/client"
"github.com/urfave/cli"
)

View File

@@ -22,7 +22,7 @@ import (
"os/exec"
"os/signal"
"github.com/coreos/etcd/client"
"go.etcd.io/etcd/client"
"github.com/urfave/cli"
)

View File

@@ -19,7 +19,7 @@ import (
"fmt"
"os"
"github.com/coreos/etcd/client"
"go.etcd.io/etcd/client"
)
// printResponseKey only supports to print key correctly.

View File

@@ -19,7 +19,7 @@ import (
"fmt"
"os"
"github.com/coreos/etcd/client"
"go.etcd.io/etcd/client"
"github.com/urfave/cli"
)

View File

@@ -17,7 +17,7 @@ package command
import (
"fmt"
"github.com/coreos/etcd/client"
"go.etcd.io/etcd/client"
"github.com/urfave/cli"
)

View File

@@ -164,7 +164,7 @@ func actionMemberRemove(c *cli.Context) error {
if m.Name == removalID {
// Note that, so long as it's not ambiguous, we *could* do the right thing by name here.
fmt.Fprintf(os.Stderr, "Found a member named %s; if this is correct, please use its ID, eg:\n\tetcdctl member remove %s\n", m.Name, m.ID)
fmt.Fprintf(os.Stderr, "For more details, read the documentation at https://github.com/coreos/etcd/blob/master/Documentation/runtime-configuration.md#remove-a-member\n\n")
fmt.Fprintf(os.Stderr, "For more details, read the documentation at https://go.etcd.io/etcd/blob/master/Documentation/runtime-configuration.md#remove-a-member\n\n")
}
}
if !foundID {

View File

@@ -19,7 +19,7 @@ import (
"os"
"time"
"github.com/coreos/etcd/client"
"go.etcd.io/etcd/client"
"github.com/urfave/cli"
)

View File

@@ -18,7 +18,7 @@ import (
"errors"
"time"
"github.com/coreos/etcd/client"
"go.etcd.io/etcd/client"
"github.com/urfave/cli"
)

View File

@@ -17,7 +17,7 @@ package command
import (
"errors"
"github.com/coreos/etcd/client"
"go.etcd.io/etcd/client"
"github.com/urfave/cli"
)

View File

@@ -17,8 +17,8 @@ package command
import (
"errors"
"github.com/coreos/etcd/client"
"github.com/urfave/cli"
"go.etcd.io/etcd/client"
)
// NewRemoveDirCommand returns the CLI command for "rmdir".

View File

@@ -20,8 +20,8 @@ import (
"reflect"
"strings"
"github.com/coreos/etcd/client"
"github.com/coreos/etcd/pkg/pathutil"
"go.etcd.io/etcd/client"
"go.etcd.io/etcd/pkg/pathutil"
"github.com/urfave/cli"
)

View File

@@ -19,7 +19,7 @@ import (
"os"
"time"
"github.com/coreos/etcd/client"
"go.etcd.io/etcd/client"
"github.com/urfave/cli"
)

View File

@@ -15,7 +15,7 @@
package command
import (
"github.com/coreos/etcd/client"
"go.etcd.io/etcd/client"
"github.com/urfave/cli"
)

View File

@@ -19,7 +19,7 @@ import (
"os"
"time"
"github.com/coreos/etcd/client"
"go.etcd.io/etcd/client"
"github.com/urfave/cli"
)

View File

@@ -18,7 +18,7 @@ import (
"errors"
"time"
"github.com/coreos/etcd/client"
"go.etcd.io/etcd/client"
"github.com/urfave/cli"
)

View File

@@ -20,7 +20,7 @@ import (
"strings"
"github.com/bgentry/speakeasy"
"github.com/coreos/etcd/client"
"go.etcd.io/etcd/client"
"github.com/urfave/cli"
)

View File

@@ -28,8 +28,8 @@ import (
"syscall"
"time"
"github.com/coreos/etcd/client"
"github.com/coreos/etcd/pkg/transport"
"go.etcd.io/etcd/client"
"go.etcd.io/etcd/pkg/transport"
"github.com/bgentry/speakeasy"
"github.com/urfave/cli"

View File

@@ -21,7 +21,7 @@ import (
"os"
"os/signal"
"github.com/coreos/etcd/client"
"go.etcd.io/etcd/client"
"github.com/urfave/cli"
)

View File

@@ -20,8 +20,8 @@ import (
"os"
"time"
"github.com/coreos/etcd/etcdctl/ctlv2/command"
"github.com/coreos/etcd/version"
"go.etcd.io/etcd/etcdctl/ctlv2/command"
"go.etcd.io/etcd/version"
"github.com/urfave/cli"
)