Correct diagnostics URI
Change-Id: Ibe2723617268a4df7a7de7d0b46d7aa621a8d4ab
This commit is contained in:
parent
8b33e3248f
commit
9bfedc76f9
@ -16,15 +16,12 @@
|
|||||||
from monikerclient.v1.base import Controller
|
from monikerclient.v1.base import Controller
|
||||||
|
|
||||||
|
|
||||||
# NOTE(kiall): The /../ is an awful hack.. But keystone only gives us a
|
|
||||||
# versioned endpoint. Maybe we should make the diags calls part
|
|
||||||
# of v1?
|
|
||||||
class DiagnosticsController(Controller):
|
class DiagnosticsController(Controller):
|
||||||
def ping(self, service, host):
|
def ping(self, service, host):
|
||||||
"""
|
"""
|
||||||
Ping a service on a given host
|
Ping a service on a given host
|
||||||
"""
|
"""
|
||||||
response = self.client.get('/../diagnostics/ping/%s/%s' %
|
response = self.client.get('/diagnostics/ping/%s/%s' %
|
||||||
(service, host))
|
(service, host))
|
||||||
|
|
||||||
return response.json
|
return response.json
|
||||||
@ -33,7 +30,7 @@ class DiagnosticsController(Controller):
|
|||||||
"""
|
"""
|
||||||
Sync Everything
|
Sync Everything
|
||||||
"""
|
"""
|
||||||
response = self.client.post('/../diagnostics/sync/all')
|
response = self.client.post('/diagnostics/sync/all')
|
||||||
|
|
||||||
return response.json
|
return response.json
|
||||||
|
|
||||||
@ -41,7 +38,7 @@ class DiagnosticsController(Controller):
|
|||||||
"""
|
"""
|
||||||
Sync Single Domain
|
Sync Single Domain
|
||||||
"""
|
"""
|
||||||
response = self.client.post('/../diagnostics/sync/domain/%s' %
|
response = self.client.post('/diagnostics/sync/domain/%s' %
|
||||||
domain_id)
|
domain_id)
|
||||||
|
|
||||||
return response.json
|
return response.json
|
||||||
@ -50,7 +47,7 @@ class DiagnosticsController(Controller):
|
|||||||
"""
|
"""
|
||||||
Sync Single Record
|
Sync Single Record
|
||||||
"""
|
"""
|
||||||
response = self.client.post('/../diagnostics/sync/record/%s/%s' %
|
response = self.client.post('/diagnostics/sync/record/%s/%s' %
|
||||||
(domain_id, record_id))
|
(domain_id, record_id))
|
||||||
|
|
||||||
return response.json
|
return response.json
|
||||||
|
Loading…
x
Reference in New Issue
Block a user