From 12ae121994f9ad32ed428724babd19259b685312 Mon Sep 17 00:00:00 2001 From: Stephen Soltesz Date: Thu, 7 Oct 2010 12:56:39 -0400 Subject: [PATCH] Add a more instructive Event message to reconstruct what actually occurred as well as the return value from the reboot attempt. --- PLC/Methods/RebootNodeWithPCU.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PLC/Methods/RebootNodeWithPCU.py b/PLC/Methods/RebootNodeWithPCU.py index 88c2225..751f9fd 100644 --- a/PLC/Methods/RebootNodeWithPCU.py +++ b/PLC/Methods/RebootNodeWithPCU.py @@ -78,6 +78,6 @@ class RebootNodeWithPCU(Method): node.update_last_pcu_reboot(commit=True) # commits new timestamp to node self.event_objects = {'Node': [node['node_id']]} - self.message = "RebootNodeWithPCU called" + self.message = "RebootNodeWithPCU %s with %s returned %s" % (node['node_id'], pcu['pcu_id'], ret) return ret -- 2.43.0