From 76004093bc3e0b61c52e705f6bd98a6b2ddc435b Mon Sep 17 00:00:00 2001 From: Robert Latta <robert.latta@geant.org> Date: Wed, 27 Jan 2021 13:36:01 +0000 Subject: [PATCH] added ims update endpoint; specified kobu version --- inventory_provider/__init__.py | 3 +++ requirements.txt | 1 + setup.py | 1 + 3 files changed, 5 insertions(+) diff --git a/inventory_provider/__init__.py b/inventory_provider/__init__.py index 5986c424..7b49ebe8 100644 --- a/inventory_provider/__init__.py +++ b/inventory_provider/__init__.py @@ -54,6 +54,9 @@ def create_app(): from inventory_provider.routes import ims_classifier app.register_blueprint(ims_classifier.routes, url_prefix='/ims-classifier') + from inventory_provider.routes import ims_jobs + app.register_blueprint(ims_jobs.routes, url_prefix='/ims-jobs') + # end of IMS based routes # OTRS routes diff --git a/requirements.txt b/requirements.txt index 3c1a2c7e..251a3bae 100644 --- a/requirements.txt +++ b/requirements.txt @@ -5,6 +5,7 @@ jsonschema==3.2.0 paramiko flask redis==3.2.1 +kombu==4.5.0 vine==1.3.0 celery==4.3.0 junos-eznc==2.2.1 diff --git a/setup.py b/setup.py index 56a28337..438d238b 100644 --- a/setup.py +++ b/setup.py @@ -17,6 +17,7 @@ setup( 'paramiko', 'flask', 'redis==3.2.1', + 'kombu==4.5.0', 'vine==1.3.0', 'celery==4.3.0', 'junos-eznc==2.2.1', -- GitLab