core: handle all exceptions for applications listing
closes #2382 Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
cebe44403c
commit
2f8dbe9b97
|
@ -297,7 +297,8 @@ class Application(PolicyBindingModel):
|
|||
user = user._wrapped
|
||||
try:
|
||||
return url % user.__dict__
|
||||
except (ValueError, TypeError, LookupError) as exc:
|
||||
# pylint: disable=broad-except
|
||||
except Exception as exc:
|
||||
LOGGER.warning("Failed to format launch url", exc=exc)
|
||||
return url
|
||||
return url
|
||||
|
|
Reference in New Issue