alexanoid
alexanoid
I have pretty much the same issue with resync and Vaadin 23.2.5 https://stackoverflow.com/questions/74147029/vaadin-23-unable-to-fully-reload-application-after-redeploy
Hi! I also faced the "twice rendering" issue https://stackoverflow.com/questions/75166305/vaadin23-vaadin-eagerserverload-true-and-beforeenterobserver
Hi! I use: `@Push(transport = Transport.LONG_POLLING, value = PushMode.MANUAL)` Also, I use: `vaadin.eagerServerLoad=true` because I implemented `IndexHtmlRequestListener `in order to add html meta tags In case I'll reproduce it on...
I checked all of the code, there are no such issues. I always use the following pattern: ``` var ui = UI.getCurrent(); listenableFuture.addCallback(jobApplicationMatrix -> { ui.access(() -> { //do some...
Also, I noticed that after some idle time PUSH notifications stop working at all, until I manually refresh the entire web page in the browser. I do not see any...
Hi @czp13 , thanks for your response! Unfortunately, I am unable to replicate it in the development environment. While working in the development environment, I periodically see the following warning...
PUSH is used almost anywhere on the website. For example, the following page https://decisionwanted.com/jobs Several times I have seen a situation, when I leave the website opened for a few...
Some additional info: ``` 2023-04-25T19:19:51.421+03:00 WARN 27968 --- [ XNIO-1 task-5] c.v.f.s.communication.ServerRpcHandler : Resynchronizing UI by client's request. A network message was lost before reaching the client and the client...
I think this is because I redeployed the app on prod... Enabled Vaadin and Atmosphere logs: logging.level.com.vaadin=DEBUG logging.level.org.atmosphere = DEBUG
Also, I reduced vaadin.pushLongPollingSuspendTimeout= from 180000 to 60000 and server.servlet.session.timeout=reduced to 30m (previously I had 7 days) This is my current **application properties**: ``` server.servlet.session.persistent=false server.servlet.session.tracking-modes=cookie server.servlet.session.cookie.http-only=true server.servlet.session.cookie.secure=true server.servlet.session.cookie.max-age=365d vaadin.heartbeatInterval=300...