Univention Bugzilla – Attachment 9466 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), 593 bytes, created by
Arvid Requate
on 2018-03-13 14:10:18 CET
(
hide
)
Description:
1.patch
Filename:
MIME Type:
Creator:
Arvid Requate
Created:
2018-03-13 14:10:18 CET
Size:
593 bytes
patch
obsolete
>diff --git a/notifier/nf_generic.py b/notifier/nf_generic.py >index e48fcbc..fbc4d94 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, >@@ -206,7 +207,7 @@ def step( sleep = True, external = True ): > nextCall = timestamp - now > if timeout == None or nextCall < timeout: > if nextCall > 0: >- timeout = nextCall >+ timeout = min(nextCall, __uint32_max) > else: > timeout = 0 > break
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