hi
i am getting errors in the logs when making a request to a server handler.
the problem is that it does not happen always but what i noticed is that it happens always when the server is running for the first time.
making the request again does not fire those logs:
what could be the reason for that?
i am calling the handler from an email url.
i am getting errors in the logs when making a request to a server handler.
the problem is that it does not happen always but what i noticed is that it happens always when the server is running for the first time.
making the request again does not fire those logs:
Waiting for debugger to connect...
Program started.
2021-08-08 03:23:34.478:INFO::main: Logging initialized @631ms to org.eclipse.jetty.util.log.StdErrLog
2021-08-08 03:23:34.626:INFOejs.Server:main: jetty-9.4.z-SNAPSHOT; built: 2018-05-03T15:56:21.710Z; git: daa59876e6f384329b122929e70a80934569428c; jvm 1.8.0_261-b12
2021-08-08 03:23:34.663:INFOejs.session:main: DefaultSessionIdManager workerName=node0
2021-08-08 03:23:34.663:INFOejs.session:main: No SessionScavenger set, using defaults
2021-08-08 03:23:34.664:INFOejs.session:main: node0 Scavenging every 600000ms
2021-08-08 03:23:34.699:INFOejsh.ContextHandler:main: Started o.e.j.s.ServletContextHandler@3108bc{/,file:///D:/F/Stores%20-%20Web%20Pages/Cell4U/DashBoard/Objects/www/,AVAILABLE}
2021-08-08 03:23:34.703:INFOejs.AbstractNCSARequestLog:main: Opened D:\F\Stores - Web Pages\Cell4U\DashBoard\Objects\logs\b4j-2021_08_08.request.log
2021-08-08 03:23:34.904:INFOejs.AbstractConnector:main: Started ServerConnector@2b9627bc{HTTP/1.1,[http/1.1]}{0.0.0.0:80}
2021-08-08 03:23:34.918:INFOejus.SslContextFactory:main: x509=X509@551aa95a(jetty,h=[],w=[]) for SslContextFactory@35d176f7[provider=null,keyStore=file:///D:/F/Stores%20-%20Web%20Pages/Cell4U/DashBoard/Objects/keystore,trustStore=null]
2021-08-08 03:23:35.248:INFOejs.AbstractConnector:main: Started ServerConnector@14a2f921{SSL,[ssl, http/1.1]}{0.0.0.0:443}
2021-08-08 03:23:35.248:INFOejs.Server:main: Started @1404ms
Emulated network latency: 100ms
java.nio.channels.ClosedChannelException
at org.eclipse.jetty.util.IteratingCallback.close(IteratingCallback.java:427)
at org.eclipse.jetty.server.HttpConnection.onClose(HttpConnection.java:507)
at org.eclipse.jetty.io.ssl.SslConnection.onClose(SslConnection.java:257)
at org.eclipse.jetty.io.SelectorManager.connectionClosed(SelectorManager.java:341)
at org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint.run(ManagedSelector.java:874)
at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:760)
at org.eclipse.jetty.util.thread.QueuedThreadPool$2.run(QueuedThreadPool.java:678)
at java.lang.Thread.run(Thread.java:748)
what could be the reason for that?
i am calling the handler from an email url.