From bee0b9b6fcb9970c8f367617f29809d1f927679a Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Mon, 7 Oct 2024 09:07:17 +0200 Subject: [PATCH] Version v5.6 --- NEWS | 13 +++++++++++++ resalloc/__init__.py | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 8e00c78..9dc7cc1 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,18 @@ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +New in v5.6: + +* Bugfixes: + + - The Watcher thread no longer fails in the case of random database + exceptions, such as "database is locked." It now simply retries, ensuring + the cluster remains well-maintained (cleanup of dead machines works + properly). + + - The Web-UI now sorts the list of Pools alphabetically (PR #161). + +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + New in v5.5: * Bugfixes: diff --git a/resalloc/__init__.py b/resalloc/__init__.py index 773d930..49e04a6 100644 --- a/resalloc/__init__.py +++ b/resalloc/__init__.py @@ -1 +1 @@ -__version__ = '5.5' +__version__ = '5.6'