mirror of https://github.com/ceph/ceph-ansible.git
tests: fix identation issue in test_rgw.py
The error was introduced by the commit
1ac94c048f
.
Fixes: https://github.com/ceph/ceph-ansible/issues/3528
Signed-off-by: Rishabh Dave <ridave@redhat.com>
pull/3515/head
parent
0bfefdd5bc
commit
557d44451d
|
@ -59,4 +59,6 @@ class TestRGWs(object):
|
||||||
ip_addr = host.interface("eth1").addresses[0]
|
ip_addr = host.interface("eth1").addresses[0]
|
||||||
for i in range(int(node["vars"]["radosgw_num_instances"])):
|
for i in range(int(node["vars"]["radosgw_num_instances"])):
|
||||||
assert host.socket(
|
assert host.socket(
|
||||||
"tcp://{ip_addr}:{port}".format(ip_addr=ip_addr, port=(8080+i))).is_listening # noqa E501
|
"tcp://{ip_addr}:{port}".format(ip_addr=ip_addr,
|
||||||
|
port=(8080+i))
|
||||||
|
).is_listening # noqa E501
|
||||||
|
|
Loading…
Reference in New Issue