1
1

Fix the component priority assignment. Thanks to Alex Margolin for

the patch.

This commit was SVN r27363.
Этот коммит содержится в:
Jeff Squyres 2012-09-25 07:13:23 +00:00
родитель 6ec41400b3
Коммит cb65a44c6c

Просмотреть файл

@ -68,12 +68,10 @@ static int orte_ras_loadleveler_open(void)
{
/* for now we set the priority lower then the priority of the POE RAS
* so that it is used whenever the LOADL_PROCESSOR_LIST is actually set */
param_priority =
mca_base_param_reg_int(&mca_ras_loadleveler_component.base_version,
"priority",
"Priority of the loadleveler ras component",
false, false, 90, NULL);
mca_base_param_reg_int(&mca_ras_loadleveler_component.base_version,
"priority",
"Priority of the loadleveler ras component",
false, false, 90, &param_priority);
return ORTE_SUCCESS;
}