This is an automated email from the ASF dual-hosted git repository. not-in-ldap pushed a commit to branch aevri/check_spawn_ci_working in repository https://gitbox.apache.org/repos/asf/buildstream.git
commit 4816a16410a25e314819b226f79985712aef02d9 Author: Angelos Evripiotis <[email protected]> AuthorDate: Thu Oct 17 11:44:41 2019 +0100 TEMP: workaround global __FILE_LIST not being pickled --- src/buildstream/node.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/buildstream/node.pyx b/src/buildstream/node.pyx index 89bb18e..3e95032 100644 --- a/src/buildstream/node.pyx +++ b/src/buildstream/node.pyx @@ -1437,7 +1437,7 @@ cdef class ProvenanceInformation: cdef __FileInfo fileinfo self._node = nodeish - if (nodeish is None) or (nodeish.file_index == _SYNTHETIC_FILE_INDEX): + if (nodeish is None) or (nodeish.file_index == _SYNTHETIC_FILE_INDEX) or not __FILE_LIST: self._filename = "" self._shortname = "" self._displayname = ""
