From 7a51a3052b96c63c7cc6deea79847ec147785e18 Mon Sep 17 00:00:00 2001 From: Calen Pennington Date: Wed, 27 Jul 2016 14:39:26 -0400 Subject: [PATCH] Use @needs to specify task composition for paver service checks, so that arguments are bundled correctly --- pavelib/utils/test/bokchoy_utils.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pavelib/utils/test/bokchoy_utils.py b/pavelib/utils/test/bokchoy_utils.py index 65eb83156e..a760395550 100644 --- a/pavelib/utils/test/bokchoy_utils.py +++ b/pavelib/utils/test/bokchoy_utils.py @@ -198,11 +198,10 @@ def check_mysql(): @task +@needs('check_mongo', 'check_memcache', 'check_mysql') @timed def check_services(): """ Check that all required services are running """ - check_mongo() - check_memcache() - check_mysql() + pass