From 1c81d3873d904e42f7a534db0e419c23e5220aed Mon Sep 17 00:00:00 2001 From: Kyr Shatskyy Date: Mon, 16 Dec 2019 11:35:08 +0100 Subject: [PATCH] qa/tasks: fix import module path for py3 compat Signed-off-by: Kyr Shatskyy --- qa/tasks/mon_thrash.py | 2 +- qa/tasks/workunit.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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 -- 2.39.5