test(inputs.influxdb_v2_listener): Skip on Windows after hang (#14551)

This commit is contained in:
Joshua Powers 2024-01-09 07:48:08 -07:00 committed by GitHub
parent 5dee68b93e
commit 193ad373aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -429,7 +429,7 @@ func TestWriteGzippedData(t *testing.T) {
// writes 25,000 metrics to the listener with 10 different writers
func TestWriteHighTraffic(t *testing.T) {
if runtime.GOOS == "darwin" {
if runtime.GOOS == "darwin" || runtime.GOOS == "windows" {
t.Skip("Skipping due to hang on darwin")
}
listener := newTestListener()