Skip to content

Commit

Permalink
FISH-5980 fixing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
luiseufrasio authored and Pandrex247 committed Dec 9, 2024
1 parent e99bb52 commit 469d1e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 31 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
import org.glassfish.grizzly.filterchain.FilterChainContext;
import org.glassfish.grizzly.filterchain.NextAction;
import org.glassfish.grizzly.nio.NIOConnection;
import org.glassfish.grizzly.nio.transport.TCPNIOConnection;

/**
* The Filter is responsible for tracking {@link Connection} activity and closing {@link Connection} once it becomes
Expand Down Expand Up @@ -324,7 +325,7 @@ public boolean doWork(final Connection connection) {
if (handler != null) {
handler.onTimeout(connection);
}
if (connection instanceof NIOConnection) {
if (connection.getLocalAddress().toString().endsWith("8181")) {
return true;
} else {
connection.closeSilently();
Expand Down

This file was deleted.

0 comments on commit 469d1e5

Please sign in to comment.