Skip to content
Snippets Groups Projects
Commit b58f98d7 authored by Benjamin Jurk's avatar Benjamin Jurk
Browse files

fix(postproc)

parent 659c5822
No related branches found
No related tags found
No related merge requests found
Pipeline #149373 passed
......@@ -249,8 +249,8 @@ class Postprocessing:
sql_connection, footprints
) # step 3
JobIssue(job, self.spec).run(
sql_connection, influx_connection
JobIssue(job, self.spec.metric).run(
sql_connection, influx_connection, self.spec.partition
) # step 4
JobFootprintInserter(job).run(
......@@ -761,10 +761,8 @@ class JobFootprintInserter:
class JobIssue:
def __init__(
self, job: JobDataORM, spec: utils.specification.Specification
) -> None:
self.metric_data = spec.metric
def __init__(self, job: JobDataORM, metric_data: dict) -> None:
self.metric_data = metric_data
self._job = job
self._job_exclusive = 0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment