We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent adc1376 commit af5649dCopy full SHA for af5649d
coherence/coherence_test.go
@@ -37,6 +37,13 @@ const (
37
func newTestConfig(t testing.TB) Config {
38
t.Helper()
39
40
+ // The coherence client adds debug messages to stdout, which corrupt
41
+ // the output of the benchmarks. See "[Coherence Client Debug]" for
42
+ // more information.
43
+ //
44
+ // [Coherence Client Debug]: https://github.com/oracle/coherence-go-client/blob/6383df14821ecf7c1ecd5f33a2c2fd402102d797/coherence/session.go#L195
45
+ t.Setenv("COHERENCE_SESSION_DEBUG", "false")
46
+
47
img := coherenceImage
48
if imgFromEnv := os.Getenv(coherenceImageEnvVar); imgFromEnv != "" {
49
img = imgFromEnv
0 commit comments