From c75dccede192e8e2126eced4475c7f4f2fe1d320 Mon Sep 17 00:00:00 2001 From: Howard Pritchard Date: Tue, 2 Dec 2014 14:46:36 -0700 Subject: [PATCH] pmix/cray: remove finalize call from comp close The finalize call in component close method is no longer being matched by an equivalent init call, so remove this call in the close method. --- opal/mca/pmix/cray/pmix_cray_component.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/opal/mca/pmix/cray/pmix_cray_component.c b/opal/mca/pmix/cray/pmix_cray_component.c index 8027d54f96..21a9fd658a 100644 --- a/opal/mca/pmix/cray/pmix_cray_component.c +++ b/opal/mca/pmix/cray/pmix_cray_component.c @@ -105,10 +105,6 @@ static int pmix_cray_component_query(mca_base_module_t **module, int *priority) static int pmix_cray_component_close(void) { - int ret = OPAL_SUCCESS; - - ret = opal_pmix_cray_module.finalize(); - - return ret; + return OPAL_SUCCESS; }