Skip to content

Commit

Permalink
Low: attrd: ignore unsupported requests in legacy attrd
Browse files Browse the repository at this point in the history
  • Loading branch information
kgaillot committed Feb 2, 2017
1 parent e5e5065 commit 30052ab
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions attrd/legacy.c
Expand Up @@ -885,6 +885,10 @@ attrd_local_callback(xmlNode * msg)
send_cluster_message(NULL, crm_msg_attrd, msg, FALSE);
}
return;

} else if (op && safe_str_neq(op, ATTRD_OP_UPDATE)) {
crm_notice("Ignoring unsupported %s request from %s", op, from);
return;
}

if (host != NULL && safe_str_neq(host, attrd_uname)) {
Expand Down

0 comments on commit 30052ab

Please sign in to comment.