Merge pull request #6257 from heyitsanthony/doc-fix-buglink

Documentation: update links for unaligned 64-bit atomics issue
This commit is contained in:
Xiang Li 2016-08-24 09:37:00 -07:00 committed by GitHub
commit bb110b0a2d

View File

@ -29,11 +29,11 @@ For etcd to officially support a new platform as stable, a few requirements are
### 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.
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