summaryrefslogtreecommitdiffstats
path: root/tests/functional/dht/test_remove_brick_while_rebalance_is_running.py
diff options
context:
space:
mode:
authorkshithijiyer <kshithij.ki@gmail.com>2020-02-20 12:54:40 +0530
committerBala Konda Reddy M <bala12352@gmail.com>2020-02-26 07:07:13 +0000
commit9be561b4437c912f78609a15e71bdf4e4f772547 (patch)
treec9a5dc582dfa7363ba447f68cf468440aff01b9d /tests/functional/dht/test_remove_brick_while_rebalance_is_running.py
parent3e6d5bdc8c45ac3b726ca3b7237e43194805cc56 (diff)
[Testfix] Remove python version dependency(Part 4)
Please refer to commit message of patch [1]. [1] https://review.gluster.org/#/c/glusto-tests/+/24140/ Change-Id: I25d30f7bdb20f0825709c4c852140e1906870ce7 Signed-off-by: kshithijiyer <kshithij.ki@gmail.com>
Diffstat (limited to 'tests/functional/dht/test_remove_brick_while_rebalance_is_running.py')
-rw-r--r--tests/functional/dht/test_remove_brick_while_rebalance_is_running.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/tests/functional/dht/test_remove_brick_while_rebalance_is_running.py b/tests/functional/dht/test_remove_brick_while_rebalance_is_running.py
index 1acfe19db..c3ae26432 100644
--- a/tests/functional/dht/test_remove_brick_while_rebalance_is_running.py
+++ b/tests/functional/dht/test_remove_brick_while_rebalance_is_running.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2017-2018 Red Hat, Inc. <http://www.redhat.com>
+# Copyright (C) 2017-2020 Red Hat, Inc. <http://www.redhat.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -14,7 +14,6 @@
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-import sys
from glusto.core import Glusto as g
@@ -94,13 +93,13 @@ class RebalanceValidation(GlusterBaseClass):
for index, mount_obj in enumerate(self.mounts, start=1):
g.log.info("Starting IO on %s:%s", mount_obj.client_system,
mount_obj.mountpoint)
- cmd = ("/usr/bin/env python%d %s create_deep_dirs_with_files "
+ cmd = ("/usr/bin/env python %s create_deep_dirs_with_files "
"--dirname-start-num %d "
"--dir-depth 2 "
"--dir-length 5 "
"--max-num-of-dirs 5 "
"--num-of-files 10 %s" % (
- sys.version_info.major, self.script_upload_path,
+ self.script_upload_path,
index + 10, mount_obj.mountpoint))
proc = g.run_async(mount_obj.client_system, cmd,
user=mount_obj.user)