What's new
Panelica Community Forum

Welcome to the official Panelica Community Forum — the central hub for server administrators, developers, and hosting professionals. Register a free account today to access technical discussions, product announcements, feature requests, and direct support from the Panelica team. Be part of the growing community shaping the future of server management.

Solved Güncelleme sonrası , güncellemeler listesi güncellenmiyor

tailadmin

New member
Beta Access
Güncellemeler geldiğinde tek tek her bir güncellemeyi uygula diyorum. Uygulanacak güncelleme kalmasada ekranda tümünü uygula düğmesi görünüyor. Yinede onu tıklayorum, güncelleme kontrolü yapıyor ve tüm güncellemeler yüklendiği için artık ekranda modal kalmıyor ama Güncellemeler sayfasında hala uygulanacak güncelleme görüyorum, uygula dediğimde uzun bir süredir yükleniyor olarak bekledi. Sayfayı yeniledim gitti.

1785700372338.png
 
Last edited:
We are actively working on this. Your feedback has been logged in our improvement tracker.
 
The server side was already handling this correctly — an interrupted job is closed on the next backend start — but the panel was not, so the banner had no way to end. Two paths in the polling loop had no stopping condition:

  • If the status response contained no job record, the loop returned early without clearing the state, so it kept polling and the banner stayed up.
  • Every request error was swallowed and polling continued with no attempt limit, so a persistently failing endpoint left the banner in place indefinitely.

Both now terminate. If no job record is seen for 15 seconds, the loop stops, the banner clears and the update list is refreshed — the backend has already closed any half-finished work, so there is nothing left to wait for. Repeated request failures stop the loop as well.

You may also have seen the list itself look stale after applying updates, since the refresh was tied to the same loop that was never ending. That is resolved by the same change.

If it still happens after updating, a hard refresh of the page rules out a cached copy of the older interface.
 
Back
Top