Skip to content
Snippets Groups Projects
Commit baded5e8 authored by Danny Auble's avatar Danny Auble
Browse files

Comment code to note why certain RPCs are handled differently than others

in the forward message logic.
parent 608421da
No related branches found
No related tags found
No related merge requests found
...@@ -215,6 +215,10 @@ void *_forward_thread(void *arg) ...@@ -215,6 +215,10 @@ void *_forward_thread(void *arg)
goto cleanup; goto cleanup;
} }
/* These messages don't have a return message, but if
* we got here things worked out so make note of the
* list of nodes as success.
*/
if ((fwd_msg->header.msg_type == REQUEST_SHUTDOWN) || if ((fwd_msg->header.msg_type == REQUEST_SHUTDOWN) ||
(fwd_msg->header.msg_type == REQUEST_RECONFIGURE) || (fwd_msg->header.msg_type == REQUEST_RECONFIGURE) ||
(fwd_msg->header.msg_type == REQUEST_REBOOT_NODES)) { (fwd_msg->header.msg_type == REQUEST_REBOOT_NODES)) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment