Improved caching of build metadata in debug mode

This commit is contained in:
Ivan Kravets
2022-08-24 12:54:35 +03:00
parent a8c3f2bdf6
commit 158aabbdf2
5 changed files with 25 additions and 7 deletions
+1 -1
View File
@@ -145,7 +145,7 @@ class DebugConfigBase: # pylint: disable=too-many-instance-attributes
)
def _load_build_data(self):
data = load_build_metadata(os.getcwd(), self.env_name, cache=True)
data = load_build_metadata(os.getcwd(), self.env_name, cache=True, debug=True)
if data:
return data
raise DebugInvalidOptionsError("Could not load a build configuration")