Skip to content
Snippets Groups Projects
Commit 06e04078 authored by Jorrit Schaap's avatar Jorrit Schaap
Browse files

SDCH-4095: increased recursion limit

parent 18c41fc6
No related branches found
No related tags found
No related merge requests found
......@@ -35,7 +35,7 @@ def main():
# some parts of scheduling use recursion. Bump the conservative python recursion limit.
import resource, sys
resource.setrlimit(resource.RLIMIT_STACK, (resource.RLIM_INFINITY, resource.RLIM_INFINITY))
sys.setrecursionlimit(10000)
sys.setrecursionlimit(32768)
except Exception as e:
logger.error(e)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment