This is an automated email from the ASF dual-hosted git repository. tvb pushed a commit to branch tristan/variables-refactor in repository https://gitbox.apache.org/repos/asf/buildstream.git
commit 47cfa6326fdda46efa49b608549739776db79813 Author: Tristan van Berkom <[email protected]> AuthorDate: Fri Jul 17 15:41:05 2020 +0900 exceptions.py: Add circular reference error for variables --- src/buildstream/exceptions.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/buildstream/exceptions.py b/src/buildstream/exceptions.py index 0eefec3..a7db247 100644 --- a/src/buildstream/exceptions.py +++ b/src/buildstream/exceptions.py @@ -142,3 +142,6 @@ class LoadErrorReason(Enum): CIRCULAR_REFERENCE = 26 """A circular element reference was detected""" + + CIRCULAR_REFERENCE_VARIABLE = 27 + """A circular variable reference was detected"""
