From fbedbe8d7d7af366c97256be1805d8e89a3af701 Mon Sep 17 00:00:00 2001 From: Hagai Kariti Date: Mon, 8 Sep 2014 11:02:39 +0300 Subject: [PATCH] Don't return 'state' attr in bigpanda module Fixes a double parameter being passed afterwards --- library/monitoring/bigpanda | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/monitoring/bigpanda b/library/monitoring/bigpanda index 0955e8a8fd..1195028707 100644 --- a/library/monitoring/bigpanda +++ b/library/monitoring/bigpanda @@ -143,7 +143,7 @@ def main(): request_url = url + '/data/events/deployments/end' # Build the deployment object we return - deployment = dict(token=token, state=state, url=url) + deployment = dict(token=token, url=url) deployment.update(body) if 'errorMessage' in deployment: message = deployment.pop('errorMessage')