Skip to content

Commit

Permalink
Disable new Http2RSTFloodProtectionConfigTest on Windows
Browse files Browse the repository at this point in the history
We already disabled Http2RSTFloodProtectionTest on Windows and this new
tests suffers from the same issues.
  • Loading branch information
gsmet committed Nov 29, 2023
1 parent cd8ea90 commit 041a3cb
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Assumptions;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.DisabledOnOs;
import org.junit.jupiter.api.condition.OS;
import org.junit.jupiter.api.extension.RegisterExtension;

import io.quarkus.test.QuarkusUnitTest;
Expand All @@ -29,6 +31,7 @@
/**
* Configuration of the RST flood protection (CVE-2023-44487)
*/
@DisabledOnOs(OS.WINDOWS)
public class Http2RSTFloodProtectionConfigTest {

@TestHTTPResource(value = "/ping", ssl = true)
Expand Down

0 comments on commit 041a3cb

Please sign in to comment.