Skip to content

Commit

Permalink
[UNDERTOW-2449] Disable PushResourceRSTTestCase for proxy, ajp, and i…
Browse files Browse the repository at this point in the history
…pv6 scenarios

It turns out it is too complex to run in those scenarios

Signed-off-by: Flavia Rainone <[email protected]>
  • Loading branch information
fl4via committed Oct 15, 2024
1 parent a1deb11 commit 56a52a5
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicInteger;

import io.undertow.testutils.AjpIgnore;
import io.undertow.testutils.IPv6Ignore;
import io.undertow.testutils.ProxyIgnore;
import org.jboss.logging.Logger;
import org.junit.AfterClass;
import org.junit.Assert;
Expand Down Expand Up @@ -85,6 +88,9 @@
*/
@Category(UnitTest.class)
@RunWith(DefaultServer.class)
@ProxyIgnore
@AjpIgnore
@IPv6Ignore
public class PushResourceRSTTestCase {
private static final Logger log = Logger.getLogger(PushResourceRSTTestCase.class);
private static final String PUSHER = "/pusher";
Expand Down

0 comments on commit 56a52a5

Please sign in to comment.