From f154594d0e728d2bfd8f6aae3c0c2c64ef22de6b Mon Sep 17 00:00:00 2001 From: pengyuesheng Date: Mon, 3 Jun 2019 09:47:26 +0800 Subject: [PATCH] Correct error messages on update action execution form When update action execution fails, two prompt messages are displayed, one successful and one fails. This patch Correct error messages Change-Id: I7001106d804e893e10726695956c9db519fa22f8 --- mistraldashboard/api.py | 1 - 1 file changed, 1 deletion(-) diff --git a/mistraldashboard/api.py b/mistraldashboard/api.py index d69b0bf..393eff8 100644 --- a/mistraldashboard/api.py +++ b/mistraldashboard/api.py @@ -375,7 +375,6 @@ def action_execution_delete(request, action_execution_id): return mistralclient(request).action_executions.delete(action_execution_id) -@handle_errors(_("Unable to update action execution"), []) def action_execution_update(request, id, state=None, output=None): """Update action execution output and or state.