Skip to content

Commit aa4313a

Browse files
committed
*: fix github links
1 parent 9454c4c commit aa4313a

File tree

19 files changed

+23
-23
lines changed

19 files changed

+23
-23
lines changed

clientv3/balancer/grpc1.7-health_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ func TestOldHealthBalancerGraylist(t *testing.T) {
191191

192192
// TestBalancerDoNotBlockOnClose ensures that balancer and grpc don't deadlock each other
193193
// due to rapid open/close conn. The deadlock causes balancer.Close() to block forever.
194-
// See issue: https://go.etcd.io/etcd/issues/7283 for more detail.
194+
// See issue: https://github.com/etcd-io/etcd/issues/7283 for more detail.
195195
func TestOldHealthBalancerDoNotBlockOnClose(t *testing.T) {
196196
defer testutil.AfterTest(t)
197197

clientv3/doc.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
//
6262
// 1. context error: canceled or deadline exceeded.
6363
// 2. gRPC status error: e.g. when clock drifts in server-side before client's context deadline exceeded.
64-
// 3. gRPC error: see https://go.etcd.io/etcd/blob/master/etcdserver/api/v3rpc/rpctypes/error.go
64+
// 3. gRPC error: see https://github.com/etcd-io/etcd/blob/master/etcdserver/api/v3rpc/rpctypes/error.go
6565
//
6666
// Here is the example code to handle client errors:
6767
//

clientv3/lease.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ type Lease interface {
132132
// given context "ctx" is canceled or timed out.
133133
//
134134
// TODO(v4.0): post errors to last keep alive message before closing
135-
// (see https://go.etcd.io/etcd/pull/7866)
135+
// (see https://github.com/etcd-io/etcd/pull/7866)
136136
KeepAlive(ctx context.Context, id LeaseID) (<-chan *LeaseKeepAliveResponse, error)
137137

138138
// KeepAliveOnce renews the lease once. The response corresponds to the

clientv3/watch.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ type Watcher interface {
6868
// TODO: explicitly set context error in the last "WatchResponse" message and close channel?
6969
// Currently, client contexts are overwritten with "valCtx" that never closes.
7070
// TODO(v3.4): configure watch retry policy, limit maximum retry number
71-
// (see https://go.etcd.io/etcd/issues/8980)
71+
// (see https://github.com/etcd-io/etcd/issues/8980)
7272
Watch(ctx context.Context, key string, opts ...OpOption) WatchChan
7373

7474
// RequestProgress requests a progress notify response be sent in all watch channels.

embed/config.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ type Config struct {
162162
//
163163
// If single-node, it advances ticks regardless.
164164
//
165-
// See https://go.etcd.io/etcd/issues/9333 for more detail.
165+
// See https://github.com/etcd-io/etcd/issues/9333 for more detail.
166166
InitialElectionTickAdvance bool `json:"initial-election-tick-advance"`
167167

168168
QuotaBackendBytes int64 `json:"quota-backend-bytes"`
@@ -246,7 +246,7 @@ type Config struct {
246246
// CVE-2018-5702 reference:
247247
// - https://bugs.chromium.org/p/project-zero/issues/detail?id=1447#c2
248248
// - https://github.com/transmission/transmission/pull/468
249-
// - https://go.etcd.io/etcd/issues/9353
249+
// - https://github.com/etcd-io/etcd/issues/9353
250250
HostWhitelist map[string]struct{}
251251

252252
// UserHandlers is for registering users handlers and only used for

embed/etcd.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ func stopServers(ctx context.Context, ss *servers) {
412412

413413
// do not grpc.Server.GracefulStop with TLS enabled etcd server
414414
// See https://github.com/grpc/grpc-go/issues/1384#issuecomment-317124531
415-
// and https://go.etcd.io/etcd/issues/8916
415+
// and https://github.com/etcd-io/etcd/issues/8916
416416
if ss.secure {
417417
shutdownNow()
418418
return

etcdctl/ctlv2/command/member_commands.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ func actionMemberRemove(c *cli.Context) error {
164164
if m.Name == removalID {
165165
// Note that, so long as it's not ambiguous, we *could* do the right thing by name here.
166166
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)
167-
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")
167+
fmt.Fprintf(os.Stderr, "For more details, read the documentation at https://github.com/etcd-io/etcd/blob/master/Documentation/runtime-configuration.md#remove-a-member\n\n")
168168
}
169169
}
170170
if !foundID {

etcdctl/ctlv3/command/global.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ func clientConfigFromCmd(cmd *cobra.Command) *clientConfig {
135135
// WARNING logs contain important information like TLS misconfirugation, but spams
136136
// too many routine connection disconnects to turn on by default.
137137
//
138-
// See https://go.etcd.io/etcd/pull/9623 for background
138+
// See https://github.com/etcd-io/etcd/pull/9623 for background
139139
clientv3.SetLogger(grpclog.NewLoggerV2(ioutil.Discard, ioutil.Discard, os.Stderr))
140140
}
141141

etcdserver/api/membership/cluster.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -516,7 +516,7 @@ func (c *RaftCluster) IsReadyToAddNewMember() bool {
516516

517517
if nstarted == 1 && nmembers == 2 {
518518
// a case of adding a new node to 1-member cluster for restoring cluster data
519-
// https://go.etcd.io/etcd/blob/master/Documentation/v2/admin_guide.md#restoring-the-cluster
519+
// https://github.com/etcd-io/etcd/blob/master/Documentation/v2/admin_guide.md#restoring-the-cluster
520520
if c.lg != nil {
521521
c.lg.Debug("number of started member is 1; can accept add member request")
522522
} else {

etcdserver/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ type ServerConfig struct {
9696
//
9797
// If single-node, it advances ticks regardless.
9898
//
99-
// See https://go.etcd.io/etcd/issues/9333 for more detail.
99+
// See https://github.com/etcd-io/etcd/issues/9333 for more detail.
100100
InitialElectionTickAdvance bool
101101

102102
BootstrapTimeout time.Duration

0 commit comments

Comments
 (0)