Merge pull request #1852 from summerswallow-whi/service-info

Attach an info field to the service
This commit is contained in:
Min RK
2018-05-28 14:57:10 +02:00
committed by GitHub
4 changed files with 15 additions and 0 deletions

View File

@@ -1525,6 +1525,7 @@ def test_get_services(app, mockservice_url):
'pid': mockservice.proc.pid,
'prefix': mockservice.server.base_url,
'url': mockservice.url,
'info': {},
}
}
@@ -1551,6 +1552,7 @@ def test_get_service(app, mockservice_url):
'pid': mockservice.proc.pid,
'prefix': mockservice.server.base_url,
'url': mockservice.url,
'info': {},
}
r = yield api_request(app, 'services/%s' % mockservice.name,