From 760a274b653eac88313c2d907635fa611d89415a Mon Sep 17 00:00:00 2001 From: Larry Rensing Date: Mon, 18 Apr 2016 15:48:46 +0000 Subject: [PATCH] Removed unused 'alarm' field The 'alarm' field is currently unused, so it has been removed. Change-Id: I20d4db6cd65ad22fea78a466bda7c8c6e7c054b7 Closes-Bug: #1550261 --- watcher_dashboard/api/watcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/watcher_dashboard/api/watcher.py b/watcher_dashboard/api/watcher.py index 06caf37..96721fd 100644 --- a/watcher_dashboard/api/watcher.py +++ b/watcher_dashboard/api/watcher.py @@ -353,7 +353,7 @@ class ActionPlan(base.APIResourceWrapper): class Action(base.APIResourceWrapper): _attrs = ('uuid', 'created_at', 'updated_at', 'deleted_at', 'next_uuid', - 'description', 'alarm', 'state', 'action_plan_uuid', + 'description', 'state', 'action_plan_uuid', 'action_type', 'applies_to', 'src', 'dst', 'parameter') def __init__(self, apiresource, request=None):