We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2263bf commit ed40e96Copy full SHA for ed40e96
1 file changed
robottelo/utils/issue_handlers/jira.py
@@ -53,9 +53,8 @@ def _load_cache(self):
53
logger.debug(f"Loading Jira cache from {self.cache_file}")
54
data = json.loads(self.cache_file.read_text())
55
self._clean_expired_entries(data)
56
- cache = data.get("issues", {})
57
- logger.debug(f"Loaded {len(cache)} entries from Jira cache")
58
- return cache
+ logger.debug(f"Loaded {len(self.cache)} entries from Jira cache")
+ return self.cache
59
logger.debug("Jira cache file does not exist, using empty cache")
60
return {}
61
0 commit comments