mirror of https://github.com/golang/go.git
plugin: include a warning about race detector compatability in docs
As described in #24245, the race detector isn't able to find some race conditions in plugins.
This commit adds a warning about this to the plugins documentation.
Updates #24245
Change-Id: I1a5ab9b5e22b6a254efc639c3c03f75b79214d49
GitHub-Last-Rev: a5b4ff4ca0
GitHub-Pull-Request: golang/go#68792
Reviewed-on: https://go-review.googlesource.com/c/go/+/604275
Reviewed-by: Ian Lance Taylor <iant@google.com>
Reviewed-by: Cherry Mui <cherryyz@google.com>
Auto-Submit: Ian Lance Taylor <iant@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
This commit is contained in:
parent
f053f4f921
commit
1443a3ea1e
|
|
@ -29,6 +29,10 @@
|
||||||
// macOS, making them unsuitable for applications intended to be
|
// macOS, making them unsuitable for applications intended to be
|
||||||
// portable.
|
// portable.
|
||||||
//
|
//
|
||||||
|
// - Plugins are poorly supported by the Go race detector. Even simple
|
||||||
|
// race conditions may not be automatically detected. See
|
||||||
|
// https://go.dev/issue/24245 for more information.
|
||||||
|
//
|
||||||
// - Applications that use plugins may require careful configuration
|
// - Applications that use plugins may require careful configuration
|
||||||
// to ensure that the various parts of the program be made available
|
// to ensure that the various parts of the program be made available
|
||||||
// in the correct location in the file system (or container image).
|
// in the correct location in the file system (or container image).
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue