Skip to content

Commit

Permalink
Fix: PE: Bare metal remotes _can_ run resources now and must be probed
Browse files Browse the repository at this point in the history
  • Loading branch information
beekhof committed Oct 24, 2017
1 parent bee6a66 commit cafc6b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pengine/native.c
Original file line number Diff line number Diff line change
Expand Up @@ -2803,7 +2803,7 @@ native_create_probe(resource_t * rsc, node_t * node, action_t * complete,
if (safe_str_eq(class, PCMK_RESOURCE_CLASS_STONITH)) {
pe_rsc_trace(rsc, "Skipping probe for %s on node %s, remote-nodes do not run stonith agents.", rsc->id, node->details->id);
return FALSE;
} else if (rsc_contains_remote_node(data_set, rsc)) {
} else if (is_container_remote_node(node) && rsc_contains_remote_node(data_set, rsc)) {
pe_rsc_trace(rsc, "Skipping probe for %s on node %s, remote-nodes can not run resources that contain connection resources.", rsc->id, node->details->id);
return FALSE;
} else if (rsc->is_remote_node) {
Expand Down

0 comments on commit cafc6b1

Please sign in to comment.