mirror of
https://github.com/ceph/ceph
synced 2025-01-19 09:32:00 +00:00
qa/tasks/ceph_manager: 'ceph $service tell ...' is obsolete
This died forever ago; no need for the fallback here. Signed-off-by: Sage Weil <sage@redhat.com>
This commit is contained in:
parent
0aa04f523b
commit
5ab996ab3c
@ -183,14 +183,9 @@ class Thrasher:
|
||||
|
||||
def _set_config(self, service_type, service_id, name, value):
|
||||
opt_arg = '--{name} {value}'.format(name=name, value=value)
|
||||
try:
|
||||
whom = '.'.join([service_type, service_id])
|
||||
self.ceph_manager.raw_cluster_cmd('--', 'tell', whom,
|
||||
'injectargs', opt_arg)
|
||||
except Exception:
|
||||
self.ceph_manager.raw_cluster_cmd('--', service_type,
|
||||
'tell', service_id,
|
||||
'injectargs', opt_arg)
|
||||
whom = '.'.join([service_type, service_id])
|
||||
self.ceph_manager.raw_cluster_cmd('--', 'tell', whom,
|
||||
'injectargs', opt_arg)
|
||||
|
||||
|
||||
def cmd_exists_on_osds(self, cmd):
|
||||
|
Loading…
Reference in New Issue
Block a user