A stuck view now recovers instead of waiting forever

Live views on a page are kept up to date by a stream of small updates rather than by re-sending the whole picture each time. If one of those updates goes missing on the way, the page notices — it can see that an update refers to a change it never received — and asks the server for a complete, fresh copy. That part always worked.

What did not work is what happened when the request for the fresh copy, or the copy itself, also went missing. It travels the same route that just proved it can lose things, and the page had no way to notice: it waited for an answer that was never coming, quietly ignored every later update, and stayed exactly as it was. On screen that looked like an area that never finished loading — a blank panel, or an unrendered placeholder, on a page whose menus, banner and breadcrumb were all perfectly fine. No error, no spinner that eventually gave up, nothing to click. Only a reload helped, and after a reload it could happen again.

Three things now close that:

For anyone reading server logs: a single recovery is normal and stays quiet. A view that asks for a fresh copy again — because the first attempt was never answered — is now recorded as a warning naming the view and the server it is asking, so the rare case that genuinely does not recover is visible instead of silent.

Reconnecting…
The server was updated. Reloading the page to pick up the latest version.