Typically, in development mode, right after the application relaunch, I might encounter the following warning (WARN):
WARN 14936 --- [nio-8080-exec-6] c.v.f.s.c.UidlRequestHandler : Invalid security key received from 0:0:0:0:0:0:0:1
and then resync:
WARN 14936 --- [nio-8080-exec-4] c.v.f.s.communication.ServerRpcHandler : Resynchronizing UI by client's request. A network message was lost before reaching the client and the client is reloading the full UI state. This typically happens because of a bad network connection with packet loss or because of some part of the network infrastructure (load balancer, proxy) terminating a push (websocket or long-polling) connection. If you are using push with a proxy, make sure the push timeout is set to be smaller than the proxy connection timeout
I suspect that this resync is somehow connected to the Invalid security key received
warning.
Could you please explain the meaning of this warning in the context of Vaadin internals? Additionally, where should I begin the debugging process to identify the underlying cause of this issue? Thank you.