test(inputs.syslog): Skip test on Windows (#15048)

This commit is contained in:
Joshua Powers 2024-03-22 10:34:03 -06:00 committed by GitHub
parent 2dde6a019d
commit 40b88b039e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 0 deletions

View File

@ -287,6 +287,10 @@ func TestCases(t *testing.T) {
}
func TestSocketClosed(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip("Skipping test as very flaky on Windows")
}
// Setup the plugin
plugin := &Syslog{
Address: "tcp://127.0.0.1:0",