From eeb9585b7894168c681eea8234d26195d6e4f609 Mon Sep 17 00:00:00 2001 From: rakesh Date: Wed, 29 Nov 2017 16:48:17 +0530 Subject: [PATCH] put file and get file corrected to put from target to master node --- qa/tasks/multisite_rgw_system_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qa/tasks/multisite_rgw_system_test.py b/qa/tasks/multisite_rgw_system_test.py index 8096055aa68a1..c367fc140f7bd 100644 --- a/qa/tasks/multisite_rgw_system_test.py +++ b/qa/tasks/multisite_rgw_system_test.py @@ -135,8 +135,8 @@ def test_exec(ctx, config, user_data, data, tclient, mclient): log.info('copy file io_info.yaml from target node to master node initiated') - io_info_fname = mclient.get_file('io_info.yaml', '/tmp') - tclient.put_file(io_info_fname, 'io_info.yaml') + io_info_fname = tclient.get_file('io_info.yaml', '/tmp') + mclient.put_file(io_info_fname, 'io_info.yaml') log.info('copy file io_info.yaml from target to master node completed') -- 2.39.5