You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildstream.apache.org by no...@apache.org on 2020/12/29 12:47:58 UTC

[buildstream] 05/16: exceptions.py: Add circular reference error for variables

This is an automated email from the ASF dual-hosted git repository.

not-in-ldap pushed a commit to branch tristan/variables-refactor
in repository https://gitbox.apache.org/repos/asf/buildstream.git

commit 47cfa6326fdda46efa49b608549739776db79813
Author: Tristan van Berkom <tr...@codethink.co.uk>
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"""