From 0828935d9096311e5986efa594b15336bfdd3a34 Mon Sep 17 00:00:00 2001 From: Tomas Edwardsson Date: Thu, 6 Jun 2013 10:11:31 +0000 Subject: [PATCH] Allow -u "" for service macros --- check_http_multi/check_http_multi | 1 + 1 file changed, 1 insertion(+) diff --git a/check_http_multi/check_http_multi b/check_http_multi/check_http_multi index 9f4abfb..6f76843 100644 --- a/check_http_multi/check_http_multi +++ b/check_http_multi/check_http_multi @@ -44,6 +44,7 @@ def main(): success = 0 failed = 0 for uri in plugin.options.uri: + if not uri: continue webstate, status = check_website(uri) if webstate: success += 1