Skip to content

Commit a843ea4

Browse files
authored
fix endpoint /jobs/{jobid} (#149)
1 parent 4d4e023 commit a843ea4

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/openeo_grass_gis_driver/jobs_job_id.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
Config as ActiniaConfig
1111
from openeo_grass_gis_driver.process_graph_db import GraphDB
1212
from openeo_grass_gis_driver.job_db import JobDB
13+
from openeo_grass_gis_driver.actinia_processing.actinia_job_db import \
14+
ActiniaJobDB
1315
from openeo_grass_gis_driver.models.error_schemas import ErrorSchema
1416
from openeo_grass_gis_driver.models.job_schemas import JobInformation
1517
from openeo_grass_gis_driver.jobs import check_job
@@ -31,6 +33,7 @@ def __init__(self):
3133
self.iface.set_auth(ActiniaConfig.USER, ActiniaConfig.PASSWORD)
3234
self.db = GraphDB()
3335
self.job_db = JobDB()
36+
self.actinia_job_db = ActiniaJobDB()
3437

3538
def get(self, job_id):
3639
"""Return information about a single job

0 commit comments

Comments
 (0)