From 57404b6a7b938eda33f90069d42613393c574592 Mon Sep 17 00:00:00 2001 From: Yehuda Sadeh Date: Tue, 30 Apr 2013 07:06:03 -0700 Subject: [PATCH] swift, s3readwrite: add missing yield Signed-off-by: Yehuda Sadeh --- teuthology/task/s3readwrite.py | 1 + teuthology/task/swift.py | 1 + 2 files changed, 2 insertions(+) diff --git a/teuthology/task/s3readwrite.py b/teuthology/task/s3readwrite.py index fec46e9b6..aa9c41902 100644 --- a/teuthology/task/s3readwrite.py +++ b/teuthology/task/s3readwrite.py @@ -152,6 +152,7 @@ def cleanup_tests(ctx, config): '{tdir}/s3-tests'.format(tdir=teuthology.get_testdir(ctx)), ], ) + yield @contextlib.contextmanager def task(ctx, config): diff --git a/teuthology/task/swift.py b/teuthology/task/swift.py index f832ca79c..7692a5d03 100644 --- a/teuthology/task/swift.py +++ b/teuthology/task/swift.py @@ -138,6 +138,7 @@ def cleanup_tests(ctx, config): '{tdir}/swift'.format(tdir=testdir), ], ) + yield @contextlib.contextmanager def task(ctx, config): -- 2.47.3