Skip to content

Commit

Permalink
analyzer: fix missing self reference
Browse files Browse the repository at this point in the history
  • Loading branch information
yselkowitz committed Dec 18, 2024
1 parent e8189d4 commit 6523d8f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions content_resolver/analyzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -1201,7 +1201,7 @@ def _analyze_workloads(self):
repo_id=repo_id,
arch=arch
)
self.data["workloads"][workload_id] = _return_failed_workload_env_err(workload_conf, env_conf, repo, arch)
self.data["workloads"][workload_id] = self._return_failed_workload_env_err(workload_conf, env_conf, repo, arch)

asyncio.run(self._analyze_workloads_async(self.data["workloads"]))

Expand Down Expand Up @@ -3400,7 +3400,7 @@ def analyze_things(self):
log("")
log("===== Generating views_all_arches =====")
log("")
self. _generate_views_all_arches()
self._generate_views_all_arches()

self._record_metric("finished _generate_views_all_arches()")

Expand Down

0 comments on commit 6523d8f

Please sign in to comment.