Univention Bugzilla – Attachment 9479 Details for
Bug 44222
UMC Server crash: OverflowError: Python int too large to convert to C int
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
1.patch
1.patch (text/plain), 601 bytes, created by
Arvid Requate
on 2018-03-19 13:22:45 CET
(
hide
)
Description:
1.patch
Filename:
MIME Type:
Creator:
Arvid Requate
Created:
2018-03-19 13:22:45 CET
Size:
601 bytes
patch
obsolete
>diff --git a/notifier/nf_generic.py b/notifier/nf_generic.py >index e48fcbc..68773f3 100644 >--- a/notifier/nf_generic.py >+++ b/notifier/nf_generic.py >@@ -53,6 +53,7 @@ __min_timer = None > __in_step = False > __step_depth = 0 > __step_depth_max = 0 >+__uint32_max = 2**31 - 1 > > _options = { > 'recursive_depth' : 10, >@@ -205,7 +206,7 @@ def step( sleep = True, external = True ): > continue > nextCall = timestamp - now > if timeout == None or nextCall < timeout: >- if nextCall > 0: >+ if nextCall > 0 and nextCall < __uint32_max: > timeout = nextCall > else: > timeout = 0
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 44222
:
9466
| 9479