summaryrefslogtreecommitdiff
path: root/ick_controller.py
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2018-04-30 17:24:27 +0300
committerLars Wirzenius <liw@liw.fi>2018-06-10 19:44:48 +0300
commitfd3fd66a1db8925e5a9a3d34acdd213f49378877 (patch)
tree5246b011f1cd035417fbca0a361b78fc630b2317 /ick_controller.py
parent9759c2b51a1250aa345c21b7cc6b793f4965ac2d (diff)
downloadick2-fd3fd66a1db8925e5a9a3d34acdd213f49378877.tar.gz
Add: notification service
Diffstat (limited to 'ick_controller.py')
-rw-r--r--ick_controller.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/ick_controller.py b/ick_controller.py
index 108a22a..4c952af 100644
--- a/ick_controller.py
+++ b/ick_controller.py
@@ -48,6 +48,7 @@ default_config = {
'statedir': None,
'artifact-store': None,
'auth-url': None,
+ 'notify-url': None,
}
@@ -97,6 +98,7 @@ def main():
api = ick2.ControllerAPI(state)
api.set_artifact_store_url(config['artifact-store'])
api.set_auth_url(config['auth-url'])
+ api.set_notify_url(config['notify-url'])
ick2.log.log(
'info', msg_text='created ControllerAPI',
artifact_store=config['artifact-store'])