summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAngelos Evripiotis <jevripiotis@bloomberg.net>2019-04-10 12:50:20 +0100
committerAngelos Evripiotis <jevripiotis@bloomberg.net>2019-05-23 16:16:35 +0100
commita735087f2d019246bdbec1310822dac7f3dc9775 (patch)
treeadedfd3d07dac31d9f19e451bda6c8b4b784b0f0
parentbbfdee545cb9a2dd34fccb445900bdf45ff679a5 (diff)
downloadbuildstream-a735087f2d019246bdbec1310822dac7f3dc9775.tar.gz
TEMP: breakpoint on recursion error
-rw-r--r--src/buildstream/_frontend/app.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/buildstream/_frontend/app.py b/src/buildstream/_frontend/app.py
index 12cfdb2a4..9d57837ac 100644
--- a/src/buildstream/_frontend/app.py
+++ b/src/buildstream/_frontend/app.py
@@ -281,7 +281,8 @@ class App():
# Exit with the error
self._error_exit(e)
- except RecursionError:
+ except RecursionError as e:
+ breakpoint()
click.echo("RecursionError: Dependency depth is too large. Maximum recursion depth exceeded.",
err=True)
sys.exit(-1)