View | Details | Raw Unified | Return to ticket 626
Collapse All | Expand All

(-)a/src/slurmctld/node_scheduler.c (-2 / +1 lines)
Lines 695-701 static int _match_feature(char *seek, struct node_set *node_set_ptr) Link Here
695
		return 1;
695
		return 1;
696
696
697
	if (cons_res_flag) {
697
	if (cons_res_flag) {
698
		if ((job_ptr->details->share_res  != 1) ||    /* 0 or NO_VAL */
698
		if ((job_ptr->details->share_res  == 0) ||
699
		    (job_ptr->details->whole_node == 1))
699
		    (job_ptr->details->whole_node == 1))
700
			return 0;
700
			return 0;
701
		return 1;
701
		return 1;
702
- 

Return to ticket 626