Skip to content

Commit 70fe200

Browse files
committed
plm/base: fix typo in variable name
An incorrectly named variable caused all pml variables to disappear from ompi_info. This commit fixes the typo. We may add some logic into the MCA base to catch these sorts of things in the future. Signed-off-by: Nathan Hjelm <[email protected]> (cherry picked from commit 664ba32) Signed-off-by: Nathan Hjelm <[email protected]>
1 parent be0843e commit 70fe200

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

orte/mca/plm/base/plm_base_frame.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ orte_plm_base_module_t orte_plm = {0};
5555
static int mca_plm_base_register(mca_base_register_flag_t flags)
5656
{
5757
orte_plm_globals.node_regex_threshold = 1024;
58-
(void) mca_base_var_register("orte", "pml", "base", "node_regex_threshold",
58+
(void) mca_base_framework_var_register (&orte_plm_base_framework, "node_regex_threshold",
5959
"Only pass the node regex on the orted command line if smaller than this threshold",
6060
MCA_BASE_VAR_TYPE_SIZE_T, NULL, 0,
6161
MCA_BASE_VAR_FLAG_INTERNAL,

0 commit comments

Comments
 (0)