Merge branch 'master' of ssh://git.eclipse.org/gitroot/jetty/org.eclipse.jetty.project
This commit is contained in:
commit
acde7a7d56
|
@ -18,8 +18,8 @@
|
|||
|
||||
package org.eclipse.jetty.io;
|
||||
|
||||
import java.nio.channels.SelectableChannel;
|
||||
import java.nio.channels.SelectionKey;
|
||||
import java.nio.channels.SocketChannel;
|
||||
|
||||
import org.eclipse.jetty.util.log.Log;
|
||||
import org.eclipse.jetty.util.log.Logger;
|
||||
|
@ -33,7 +33,7 @@ public class SelectChannelEndPoint extends SocketChannelEndPoint implements Mana
|
|||
{
|
||||
public static final Logger LOG = Log.getLogger(SelectChannelEndPoint.class);
|
||||
|
||||
public SelectChannelEndPoint(SocketChannel channel, ManagedSelector selector, SelectionKey key, Scheduler scheduler, long idleTimeout)
|
||||
public SelectChannelEndPoint(SelectableChannel channel, ManagedSelector selector, SelectionKey key, Scheduler scheduler, long idleTimeout)
|
||||
{
|
||||
super(channel,selector,key,scheduler);
|
||||
setIdleTimeout(idleTimeout);
|
||||
|
|
|
@ -216,13 +216,8 @@ public class JdbcLoginServiceTest
|
|||
}
|
||||
}
|
||||
|
||||
protected void startClient(String username, String pwd)
|
||||
protected void startClient(String user, String pwd)
|
||||
throws Exception
|
||||
{
|
||||
startClient("jetty", "jetty");
|
||||
}
|
||||
|
||||
protected void startClient(String user, String pwd) throws Exception
|
||||
{
|
||||
_client = new HttpClient();
|
||||
QueuedThreadPool executor = new QueuedThreadPool();
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
<parent>
|
||||
<groupId>org.eclipse.jetty.tests</groupId>
|
||||
<artifactId>test-sessions-parent</artifactId>
|
||||
<version>9.3.4-SNAPSHOT</version>
|
||||
<version>9.4.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>test-file-sessions</artifactId>
|
||||
<name>Jetty Tests :: Sessions :: File</name>
|
||||
|
|
Loading…
Reference in New Issue