Univention Bugzilla – Attachment 10611 Details for
Bug 52535
UMC internal server error (nf_generic.py line 175, in timer_remove, del __timers[id])
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
patch? / hotfix
52535.patch (text/plain), 813 bytes, created by
Florian Best
on 2021-02-03 19:00:05 CET
(
hide
)
Description:
patch? / hotfix
Filename:
MIME Type:
Creator:
Florian Best
Created:
2021-02-03 19:00:05 CET
Size:
813 bytes
patch
obsolete
>diff --git management/univention-management-console/univention-management-console-web-server management/univention-management-console/univention-management-console-web-server >index ec776421bc..940b138096 100755 >--- management/univention-management-console/univention-management-console-web-server >+++ management/univention-management-console/univention-management-console-web-server >@@ -395,7 +395,10 @@ class User(object): > self._timeout_id = notifier.timer_add(int(self.session_end_time - monotonic()) * 1000, self._session_timeout_timer) > > def disconnect_timer(self): >- notifier.timer_remove(self._timeout_id) >+ try: >+ notifier.timer_remove(self._timeout_id) >+ except KeyError: >+ pass # timer has already been removed, Bug #52535 > > def timed_out(self, now): > return self.session_end_time < now
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 52535
: 10611