Skip to content

Commit

Permalink
fix endpoint /jobs/{jobid} (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
metzm authored Jul 7, 2022
1 parent 4d4e023 commit a843ea4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/openeo_grass_gis_driver/jobs_job_id.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
Config as ActiniaConfig
from openeo_grass_gis_driver.process_graph_db import GraphDB
from openeo_grass_gis_driver.job_db import JobDB
from openeo_grass_gis_driver.actinia_processing.actinia_job_db import \
ActiniaJobDB
from openeo_grass_gis_driver.models.error_schemas import ErrorSchema
from openeo_grass_gis_driver.models.job_schemas import JobInformation
from openeo_grass_gis_driver.jobs import check_job
Expand All @@ -31,6 +33,7 @@ def __init__(self):
self.iface.set_auth(ActiniaConfig.USER, ActiniaConfig.PASSWORD)
self.db = GraphDB()
self.job_db = JobDB()
self.actinia_job_db = ActiniaJobDB()

def get(self, job_id):
"""Return information about a single job
Expand Down

0 comments on commit a843ea4

Please sign in to comment.