Browse Source

Documentation: update links for unaligned 64-bit atomics issue

Fixes #6256
Anthony Romano 9 years ago
parent
commit
159c8ee6e0
1 changed files with 3 additions and 3 deletions
  1. 3 3
      Documentation/op-guide/supported-platform.md

+ 3 - 3
Documentation/op-guide/supported-platform.md

@@ -29,11 +29,11 @@ For etcd to officially support a new platform as stable, a few requirements are
 
 
 ### 32-bit and other unsupported systems
 ### 32-bit and other unsupported systems
 
 
-etcd has known issues on 32-bit systems due to a bug in the Go runtime. See #[358][358] for more information.
+etcd has known issues on 32-bit systems due to a bug in the Go runtime. See the [Go issue][go-issue] and [atomic package][go-atomic] for more information.
 
 
 To avoid inadvertently running a possibly unstable etcd server, `etcd` on unstable or unsupported architectures will print a warning message and immediately exit if the environment variable `ETCD_UNSUPPORTED_ARCH` is not set to the target architecture.
 To avoid inadvertently running a possibly unstable etcd server, `etcd` on unstable or unsupported architectures will print a warning message and immediately exit if the environment variable `ETCD_UNSUPPORTED_ARCH` is not set to the target architecture.
 
 
 Currently only the amd64 architecture is officially supported by `etcd`.
 Currently only the amd64 architecture is officially supported by `etcd`.
 
 
-[358]: https://github.com/coreos/etcd/issues/358
-
+[go-issue]: https://github.com/golang/go/issues/599
+[go-atomic]: https://golang.org/pkg/sync/atomic/#pkg-note-BUG