From bc5a9fbf090b27e6e862d3c611e89de724662655 Mon Sep 17 00:00:00 2001 From: Kyr Shatskyy Date: Sat, 15 Feb 2020 11:05:01 +0100 Subject: [PATCH] qa/tasks/rgw: fix imports for py3 Signed-off-by: Kyr Shatskyy (cherry picked from commit eec9479f6d9ee0ed8dfa705491159d49a89bec19) --- qa/tasks/rgw.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/qa/tasks/rgw.py b/qa/tasks/rgw.py index a48da6a8fc820..75004c87a4595 100644 --- a/qa/tasks/rgw.py +++ b/qa/tasks/rgw.py @@ -9,11 +9,11 @@ from teuthology.orchestra import run from teuthology import misc as teuthology from teuthology import contextutil from teuthology.exceptions import ConfigError -from util import get_remote_for_role -from util.rgw import rgwadmin, wait_for_radosgw -from util.rados import (create_ec_pool, - create_replicated_pool, - create_cache_pool) +from tasks.util import get_remote_for_role +from tasks.util.rgw import rgwadmin, wait_for_radosgw +from tasks.util.rados import (create_ec_pool, + create_replicated_pool, + create_cache_pool) log = logging.getLogger(__name__) -- 2.39.5