From: Kyr Shatskyy Date: Mon, 16 Dec 2019 10:35:08 +0000 (+0100) Subject: qa/tasks: fix import module path for py3 compat X-Git-Tag: v15.1.1~129^2~23 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=1c81d3873d904e42f7a534db0e419c23e5220aed;p=ceph.git qa/tasks: fix import module path for py3 compat Signed-off-by: Kyr Shatskyy --- diff --git a/qa/tasks/mon_thrash.py b/qa/tasks/mon_thrash.py index f7e75a429f2..4224acf0319 100644 --- a/qa/tasks/mon_thrash.py +++ b/qa/tasks/mon_thrash.py @@ -3,13 +3,13 @@ Monitor thrash """ import logging import contextlib -import ceph_manager import random import time import gevent import json import math from teuthology import misc as teuthology +from tasks import ceph_manager from tasks.cephfs.filesystem import MDSCluster from tasks.thrasher import Thrasher diff --git a/qa/tasks/workunit.py b/qa/tasks/workunit.py index 6eb850a75cb..39c4458c4f6 100644 --- a/qa/tasks/workunit.py +++ b/qa/tasks/workunit.py @@ -8,8 +8,8 @@ import re import six -from util import get_remote_for_role -from util.workunit import get_refspec_after_overrides +from tasks.util import get_remote_for_role +from tasks.util.workunit import get_refspec_after_overrides from teuthology import misc from teuthology.config import config as teuth_config