All,
I have an. OSGi bundle that is executing code that is base on the simple Hello
World Servlet example:
server = new Server(9090);
ServletHandler handler = new ServletHandler();
server.setHandler(handler);
handler.addServletWithMapping(HelloServlet.class, "/*”);
server.start();
And
@SuppressWarnings("serial")
public static class HelloServlet extends HttpServlet {
@Override
protected void doGet(HttpServletRequest request, HttpServletResponse
response) throws IOException {
response.setStatus(HttpServletResponse.SC_OK);
response.setContentType("text/html");
response.setCharacterEncoding("utf-8");
response.getWriter().println("<h1>Hello from HelloServlet</h1>");
}
}
When firing up a browser and navigating to http://localhost:9090/
<http://localhost:9090/> I do get the following log ending in a TimeOutException
17:40:48.534 [}{0.0.0.0:9090}] DEBUG org.eclipse.jetty.io.ManagedSelector:162 -
Queued change org.eclipse.jetty.io.ManagedSelector$Accept@46df0ee9 on
ManagedSelector@664083f6{STARTED} id=1 keys=0 selected=0 updates=0
17:40:48.534 [}{0.0.0.0:9090}] DEBUG org.eclipse.jetty.io.ManagedSelector:180 -
Wakeup on submit ManagedSelector@664083f6{STARTED} id=1 keys=0 selected=0
updates=1
17:40:48.535 [p1947192530-125] DEBUG org.eclipse.jetty.io.ManagedSelector:470 -
Selector sun.nio.ch.KQueueSelectorImpl@3f5962e9 woken with none selected
17:40:48.535 [p1947192530-125] DEBUG org.eclipse.jetty.io.ManagedSelector:479 -
Selector sun.nio.ch.KQueueSelectorImpl@3f5962e9 woken up from select, 0/0/0
selected
17:40:48.535 [p1947192530-125] DEBUG org.eclipse.jetty.io.ManagedSelector:492 -
Selector sun.nio.ch.KQueueSelectorImpl@3f5962e9 processing 0 keys, 1 updates
17:40:48.535 [p1947192530-125] DEBUG org.eclipse.jetty.io.ManagedSelector:418 -
updateable 1
17:40:48.535 [p1947192530-125] DEBUG org.eclipse.jetty.io.ManagedSelector:427 -
update org.eclipse.jetty.io.ManagedSelector$Accept@46df0ee9
17:40:48.536 [p1947192530-125] DEBUG o.e.j.util.thread.QueuedThreadPool:521 -
queue org.eclipse.jetty.io.ManagedSelector$Accept@46df0ee9 startThread=false
17:40:48.536 [p1947192530-129] DEBUG o.e.j.util.thread.QueuedThreadPool:917 -
run org.eclipse.jetty.io.ManagedSelector$Accept@46df0ee9 in
QueuedThreadPool[qtp1947192530]@740fccd2{STARTED,8<=8<=200,i=2,r=8,q=0}[ReservedThreadExecutor@31ab75a5{s=0/8,p=0}]
17:40:48.536 [p1947192530-125] DEBUG org.eclipse.jetty.io.ManagedSelector:447 -
updates 0
17:40:48.536 [p1947192530-125] DEBUG org.eclipse.jetty.io.ManagedSelector:465 -
Selector sun.nio.ch.KQueueSelectorImpl@3f5962e9 waiting with 1 keys
17:40:48.543 [p1947192530-129] DEBUG org.eclipse.jetty.io.IdleTimeout:161 -
SocketChannelEndPoint@6e62015d{/0:0:0:0:0:0:0:1:50147<->/0:0:0:0:0:0:0:1:9090,OPEN,fill=-,flush=-,to=4/30000}{io=0/0,kio=0,kro=0}-><null>
idle timeout check, elapsed: 3 ms, remaining: 29997 ms
17:40:48.620 [p1947192530-129] DEBUG org.eclipse.jetty.server.HttpChannel:117 -
new
HttpChannelOverHttp@11bcc90a{r=0,c=false,c=false/false,a=IDLE,uri=null,age=0}
->
SocketChannelEndPoint@6e62015d{/0:0:0:0:0:0:0:1:50147<->/0:0:0:0:0:0:0:1:9090,OPEN,fill=-,flush=-,to=81/30000}{io=0/0,kio=0,kro=0}-><null>,null,HttpChannelState@52994fc4{s=IDLE
a=NOT_ASYNC i=true r=IDLE w=false}
17:40:48.631 [p1947192530-129] DEBUG o.e.jetty.server.HttpConnection:112 - New
HTTP Connection
HttpConnection@2173c5af::SocketChannelEndPoint@6e62015d{/0:0:0:0:0:0:0:1:50147<->/0:0:0:0:0:0:0:1:9090,OPEN,fill=-,flush=-,to=92/30000}{io=0/0,kio=0,kro=0}-><null>
17:40:48.632 [p1947192530-129] DEBUG o.eclipse.jetty.io.AbstractEndPoint:345 -
onOpen
SocketChannelEndPoint@6e62015d{/0:0:0:0:0:0:0:1:50147<->/0:0:0:0:0:0:0:1:9090,OPEN,fill=-,flush=-,to=93/30000}{io=0/0,kio=0,kro=0}->HttpConnection@2173c5af[p=HttpParser{s=START,0
of
-1},g=HttpGenerator@2cc04705{s=START}]=>HttpChannelOverHttp@11bcc90a{r=0,c=false,c=false/false,a=IDLE,uri=null,age=0}
17:40:48.632 [p1947192530-129] DEBUG o.e.jetty.io.AbstractConnection:201 -
onOpen
HttpConnection@2173c5af::SocketChannelEndPoint@6e62015d{/0:0:0:0:0:0:0:1:50147<->/0:0:0:0:0:0:0:1:9090,OPEN,fill=-,flush=-,to=93/30000}{io=0/0,kio=0,kro=0}->HttpConnection@2173c5af[p=HttpParser{s=START,0
of
-1},g=HttpGenerator@2cc04705{s=START}]=>HttpChannelOverHttp@11bcc90a{r=0,c=false,c=false/false,a=IDLE,uri=null,age=0}
17:40:48.632 [p1947192530-129] DEBUG o.e.jetty.io.AbstractConnection:133 -
fillInterested
HttpConnection@2173c5af::SocketChannelEndPoint@6e62015d{/0:0:0:0:0:0:0:1:50147<->/0:0:0:0:0:0:0:1:9090,OPEN,fill=-,flush=-,to=93/30000}{io=0/0,kio=0,kro=0}->HttpConnection@2173c5af[p=HttpParser{s=START,0
of
-1},g=HttpGenerator@2cc04705{s=START}]=>HttpChannelOverHttp@11bcc90a{r=0,c=false,c=false/false,a=IDLE,uri=null,age=0}
17:40:48.633 [p1947192530-129] DEBUG org.eclipse.jetty.io.FillInterest:79 -
interested
FillInterest@13a1a18f{AC.ReadCB@2173c5af{HttpConnection@2173c5af::SocketChannelEndPoint@6e62015d{/0:0:0:0:0:0:0:1:50147<->/0:0:0:0:0:0:0:1:9090,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@2173c5af[p=HttpParser{s=START,0
of
-1},g=HttpGenerator@2cc04705{s=START}]=>HttpChannelOverHttp@11bcc90a{r=0,c=false,c=false/false,a=IDLE,uri=null,age=0}}}
17:40:48.633 [p1947192530-129] DEBUG org.eclipse.jetty.io.ChannelEndPoint:418 -
changeInterests p=false 0->1 for
SocketChannelEndPoint@6e62015d{/0:0:0:0:0:0:0:1:50147<->/0:0:0:0:0:0:0:1:9090,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@2173c5af[p=HttpParser{s=START,0
of
-1},g=HttpGenerator@2cc04705{s=START}]=>HttpChannelOverHttp@11bcc90a{r=0,c=false,c=false/false,a=IDLE,uri=null,age=0}
17:40:48.633 [p1947192530-129] DEBUG org.eclipse.jetty.io.ManagedSelector:162 -
Queued change org.eclipse.jetty.io.ChannelEndPoint$1@1196ec07 on
ManagedSelector@664083f6{STARTED} id=1 keys=1 selected=0 updates=0
17:40:48.633 [p1947192530-129] DEBUG org.eclipse.jetty.io.ManagedSelector:180 -
Wakeup on submit ManagedSelector@664083f6{STARTED} id=1 keys=1 selected=0
updates=1
17:40:48.633 [p1947192530-125] DEBUG org.eclipse.jetty.io.ManagedSelector:470 -
Selector sun.nio.ch.KQueueSelectorImpl@3f5962e9 woken with none selected
17:40:48.633 [p1947192530-125] DEBUG org.eclipse.jetty.io.ManagedSelector:479 -
Selector sun.nio.ch.KQueueSelectorImpl@3f5962e9 woken up from select, 0/0/1
selected
17:40:48.633 [p1947192530-129] DEBUG org.eclipse.jetty.io.ManagedSelector:272 -
Created
SocketChannelEndPoint@6e62015d{/0:0:0:0:0:0:0:1:50147<->/0:0:0:0:0:0:0:1:9090,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@2173c5af[p=HttpParser{s=START,0
of
-1},g=HttpGenerator@2cc04705{s=START}]=>HttpChannelOverHttp@11bcc90a{r=0,c=false,c=false/false,a=IDLE,uri=null,age=0}
17:40:48.633 [p1947192530-125] DEBUG org.eclipse.jetty.io.ManagedSelector:492 -
Selector sun.nio.ch.KQueueSelectorImpl@3f5962e9 processing 0 keys, 1 updates
17:40:48.634 [p1947192530-129] DEBUG o.e.j.util.thread.QueuedThreadPool:920 -
ran org.eclipse.jetty.io.ManagedSelector$Accept@46df0ee9 in
QueuedThreadPool[qtp1947192530]@740fccd2{STARTED,8<=8<=200,i=2,r=8,q=0}[ReservedThreadExecutor@31ab75a5{s=0/8,p=0}]
17:40:48.634 [p1947192530-125] DEBUG org.eclipse.jetty.io.ManagedSelector:418 -
updateable 1
17:40:48.634 [p1947192530-125] DEBUG org.eclipse.jetty.io.ManagedSelector:427 -
update org.eclipse.jetty.io.ChannelEndPoint$1@1196ec07
17:40:48.634 [p1947192530-125] DEBUG org.eclipse.jetty.io.ChannelEndPoint:384 -
Key interests updated 0 -> 1 on
SocketChannelEndPoint@6e62015d{/0:0:0:0:0:0:0:1:50147<->/0:0:0:0:0:0:0:1:9090,OPEN,fill=FI,flush=-,to=1/30000}{io=1/1,kio=1,kro=0}->HttpConnection@2173c5af[p=HttpParser{s=START,0
of
-1},g=HttpGenerator@2cc04705{s=START}]=>HttpChannelOverHttp@11bcc90a{r=0,c=false,c=false/false,a=IDLE,uri=null,age=0}
17:40:48.634 [p1947192530-125] DEBUG org.eclipse.jetty.io.ManagedSelector:447 -
updates 0
17:40:48.634 [p1947192530-125] DEBUG org.eclipse.jetty.io.ManagedSelector:465 -
Selector sun.nio.ch.KQueueSelectorImpl@3f5962e9 waiting with 1 keys
17:40:48.634 [p1947192530-125] DEBUG org.eclipse.jetty.io.ManagedSelector:479 -
Selector sun.nio.ch.KQueueSelectorImpl@3f5962e9 woken up from select, 1/1/1
selected
17:40:48.634 [p1947192530-125] DEBUG org.eclipse.jetty.io.ManagedSelector:492 -
Selector sun.nio.ch.KQueueSelectorImpl@3f5962e9 processing 1 keys, 0 updates
17:40:48.635 [p1947192530-125] DEBUG org.eclipse.jetty.io.ManagedSelector:521 -
selected 1 sun.nio.ch.SelectionKeyImpl@7c49010f
SocketChannelEndPoint@6e62015d{/0:0:0:0:0:0:0:1:50147<->/0:0:0:0:0:0:0:1:9090,OPEN,fill=FI,flush=-,to=2/30000}{io=1/1,kio=1,kro=1}->HttpConnection@2173c5af[p=HttpParser{s=START,0
of
-1},g=HttpGenerator@2cc04705{s=START}]=>HttpChannelOverHttp@11bcc90a{r=0,c=false,c=false/false,a=IDLE,uri=null,age=0}
17:40:48.635 [p1947192530-125] DEBUG org.eclipse.jetty.io.ChannelEndPoint:344 -
onSelected 1->0 r=true w=false for
SocketChannelEndPoint@6e62015d{/0:0:0:0:0:0:0:1:50147<->/0:0:0:0:0:0:0:1:9090,OPEN,fill=FI,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2173c5af[p=HttpParser{s=START,0
of
-1},g=HttpGenerator@2cc04705{s=START}]=>HttpChannelOverHttp@11bcc90a{r=0,c=false,c=false/false,a=IDLE,uri=null,age=0}
17:40:48.635 [p1947192530-125] DEBUG org.eclipse.jetty.io.ChannelEndPoint:356 -
task
CEP:SocketChannelEndPoint@6e62015d{/0:0:0:0:0:0:0:1:50147<->/0:0:0:0:0:0:0:1:9090,OPEN,fill=FI,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2173c5af[p=HttpParser{s=START,0
of
-1},g=HttpGenerator@2cc04705{s=START}]=>HttpChannelOverHttp@11bcc90a{r=0,c=false,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING
17:40:48.636 [p1947192530-125] DEBUG o.e.j.u.t.ReservedThreadExecutor:191 -
ReservedThreadExecutor@31ab75a5{s=0/8,p=0} tryExecute
EatWhatYouKill@7a74672/SelectorProducer@35b79b1f/PRODUCING/p=false/QueuedThreadPool[qtp1947192530]@740fccd2{STARTED,8<=8<=200,i=3,r=8,q=0}[ReservedThreadExecutor@31ab75a5{s=0/8,p=0}][pc=0,pic=0,pec=0,epc=0]@2019-12-12T17:40:48.635+01:00
17:40:48.636 [p1947192530-125] DEBUG o.e.j.u.t.ReservedThreadExecutor:227 -
ReservedThreadExecutor@31ab75a5{s=0/8,p=1} startReservedThread p=1
17:40:48.637 [p1947192530-125] DEBUG o.e.j.util.thread.QueuedThreadPool:521 -
queue ReservedThreadExecutor@31ab75a5{s=0/8,p=1}@14c28233 startThread=false
17:40:48.637 [p1947192530-130] DEBUG o.e.j.util.thread.QueuedThreadPool:917 -
run ReservedThreadExecutor@31ab75a5{s=0/8,p=1}@14c28233 in
QueuedThreadPool[qtp1947192530]@740fccd2{STARTED,8<=8<=200,i=2,r=8,q=0}[ReservedThreadExecutor@31ab75a5{s=0/8,p=1}]
17:40:48.637 [p1947192530-130] DEBUG o.e.j.u.t.ReservedThreadExecutor:348 -
ReservedThreadExecutor@31ab75a5{s=1/8,p=1}@14c28233 started
17:40:48.637 [p1947192530-130] DEBUG o.e.j.u.t.ReservedThreadExecutor:277 -
ReservedThreadExecutor@31ab75a5{s=1/8,p=0}@14c28233 waiting
17:40:48.637 [p1947192530-125] DEBUG o.e.j.u.t.strategy.EatWhatYouKill:291 -
EatWhatYouKill@7a74672/SelectorProducer@35b79b1f/PRODUCING/p=false/QueuedThreadPool[qtp1947192530]@740fccd2{STARTED,8<=8<=200,i=2,r=8,q=0}[ReservedThreadExecutor@31ab75a5{s=0/8,p=1}][pc=0,pic=0,pec=0,epc=0]@2019-12-12T17:40:48.637+01:00
m=PRODUCE_EXECUTE_CONSUME
t=CEP:SocketChannelEndPoint@6e62015d{/0:0:0:0:0:0:0:1:50147<->/0:0:0:0:0:0:0:1:9090,OPEN,fill=FI,flush=-,to=4/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2173c5af[p=HttpParser{s=START,0
of
-1},g=HttpGenerator@2cc04705{s=START}]=>HttpChannelOverHttp@11bcc90a{r=0,c=false,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING
17:40:48.638 [p1947192530-125] DEBUG o.e.j.util.thread.QueuedThreadPool:521 -
queue
CEP:SocketChannelEndPoint@6e62015d{/0:0:0:0:0:0:0:1:50147<->/0:0:0:0:0:0:0:1:9090,OPEN,fill=FI,flush=-,to=5/30000}{io=1/0,kio=1,kro=1}->HttpConnection@2173c5af[p=HttpParser{s=START,0
of
-1},g=HttpGenerator@2cc04705{s=START}]=>HttpChannelOverHttp@11bcc90a{r=0,c=false,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING
startThread=false
17:40:48.638 [p1947192530-125] DEBUG org.eclipse.jetty.io.ManagedSelector:418 -
updateable 0
17:40:48.638 [p1947192530-125] DEBUG org.eclipse.jetty.io.ManagedSelector:447 -
updates 0
17:40:48.638 [p1947192530-125] DEBUG org.eclipse.jetty.io.ChannelEndPoint:384 -
Key interests updated 1 -> 0 on
SocketChannelEndPoint@6e62015d{/0:0:0:0:0:0:0:1:50147<->/0:0:0:0:0:0:0:1:9090,OPEN,fill=FI,flush=-,to=5/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2173c5af[p=HttpParser{s=START,0
of
-1},g=HttpGenerator@2cc04705{s=START}]=>HttpChannelOverHttp@11bcc90a{r=0,c=false,c=false/false,a=IDLE,uri=null,age=0}
17:40:48.638 [p1947192530-125] DEBUG org.eclipse.jetty.io.ManagedSelector:465 -
Selector sun.nio.ch.KQueueSelectorImpl@3f5962e9 waiting with 1 keys
17:40:48.638 [p1947192530-131] DEBUG o.e.j.util.thread.QueuedThreadPool:917 -
run
CEP:SocketChannelEndPoint@6e62015d{/0:0:0:0:0:0:0:1:50147<->/0:0:0:0:0:0:0:1:9090,OPEN,fill=FI,flush=-,to=5/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2173c5af[p=HttpParser{s=START,0
of
-1},g=HttpGenerator@2cc04705{s=START}]=>HttpChannelOverHttp@11bcc90a{r=0,c=false,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING
in
QueuedThreadPool[qtp1947192530]@740fccd2{STARTED,8<=8<=200,i=1,r=8,q=0}[ReservedThreadExecutor@31ab75a5{s=1/8,p=0}]
17:40:48.639 [p1947192530-131] DEBUG org.eclipse.jetty.io.FillInterest:99 -
fillable
FillInterest@13a1a18f{AC.ReadCB@2173c5af{HttpConnection@2173c5af::SocketChannelEndPoint@6e62015d{/0:0:0:0:0:0:0:1:50147<->/0:0:0:0:0:0:0:1:9090,OPEN,fill=FI,flush=-,to=6/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2173c5af[p=HttpParser{s=START,0
of
-1},g=HttpGenerator@2cc04705{s=START}]=>HttpChannelOverHttp@11bcc90a{r=0,c=false,c=false/false,a=IDLE,uri=null,age=0}}}
17:40:48.639 [p1947192530-131] DEBUG o.e.jetty.server.HttpConnection:243 -
HttpConnection@2173c5af::SocketChannelEndPoint@6e62015d{/0:0:0:0:0:0:0:1:50147<->/0:0:0:0:0:0:0:1:9090,OPEN,fill=-,flush=-,to=6/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2173c5af[p=HttpParser{s=START,0
of
-1},g=HttpGenerator@2cc04705{s=START}]=>HttpChannelOverHttp@11bcc90a{r=0,c=false,c=false/false,a=IDLE,uri=null,age=0}
onFillable enter HttpChannelState@52994fc4{s=IDLE a=NOT_ASYNC i=true r=IDLE
w=false} null
17:41:18.547 [eduler-1b868ef0] DEBUG org.eclipse.jetty.io.IdleTimeout:161 -
SocketChannelEndPoint@6e62015d{/0:0:0:0:0:0:0:1:50147<->/0:0:0:0:0:0:0:1:9090,OPEN,fill=-,flush=-,to=29913/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2173c5af[p=HttpParser{s=START,0
of
-1},g=HttpGenerator@2cc04705{s=START}]=>HttpChannelOverHttp@11bcc90a{r=0,c=false,c=false/false,a=IDLE,uri=null,age=0}
idle timeout check, elapsed: 29913 ms, remaining: 87 ms
17:41:18.639 [eduler-1b868ef0] DEBUG org.eclipse.jetty.io.IdleTimeout:161 -
SocketChannelEndPoint@6e62015d{/0:0:0:0:0:0:0:1:50147<->/0:0:0:0:0:0:0:1:9090,OPEN,fill=-,flush=-,to=30005/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2173c5af[p=HttpParser{s=START,0
of
-1},g=HttpGenerator@2cc04705{s=START}]=>HttpChannelOverHttp@11bcc90a{r=0,c=false,c=false/false,a=IDLE,uri=null,age=0}
idle timeout check, elapsed: 30005 ms, remaining: -5 ms
17:41:18.639 [eduler-1b868ef0] DEBUG org.eclipse.jetty.io.IdleTimeout:168 -
SocketChannelEndPoint@6e62015d{/0:0:0:0:0:0:0:1:50147<->/0:0:0:0:0:0:0:1:9090,OPEN,fill=-,flush=-,to=30005/30000}{io=0/0,kio=0,kro=1}->HttpConnection@2173c5af[p=HttpParser{s=START,0
of
-1},g=HttpGenerator@2cc04705{s=START}]=>HttpChannelOverHttp@11bcc90a{r=0,c=false,c=false/false,a=IDLE,uri=null,age=0}
idle timeout expired
17:41:18.640 [eduler-1b868ef0] DEBUG org.eclipse.jetty.io.FillInterest:134 -
onFail FillInterest@13a1a18f{null}
java.util.concurrent.TimeoutException: Idle timeout expired: 30005/30000 ms
at
org.eclipse.jetty.io.IdleTimeout.checkIdleTimeout(IdleTimeout.java:171)
at org.eclipse.jetty.io.IdleTimeout.idleCheck(IdleTimeout.java:113)
at
java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at
java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180)
at
java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293)
at
java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:745)
17:41:18.640 [eduler-1b868ef0] DEBUG org.eclipse.jetty.io.WriteFlusher:490 -
ignored: WriteFlusher@15e95526{IDLE}->null
java.util.concurrent.TimeoutException: Idle timeout expired: 30005/30000 ms
at
org.eclipse.jetty.io.IdleTimeout.checkIdleTimeout(IdleTimeout.java:171)
at org.eclipse.jetty.io.IdleTimeout.idleCheck(IdleTimeout.java:113)
at
java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at
java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180)
at
java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293)
at
java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:745)
What am I missing here?
Thanks
K
_______________________________________________
jetty-users mailing list
[email protected]
To change your delivery options, retrieve your password, or unsubscribe from
this list, visit
https://www.eclipse.org/mailman/listinfo/jetty-users