From e1543e37c6021022a873c1c223db5f1c12c6a430 Mon Sep 17 00:00:00 2001 From: Ralph Castain Date: Thu, 9 Apr 2020 07:13:02 -0700 Subject: [PATCH] Silence unnecessary error logs Tracks https://github.com/openpmix/openpmix/pull/1669 Signed-off-by: Ralph Castain --- .../pmix/pmix3x/pmix/src/mca/gds/ds12/gds_ds12_lock_pthread.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/opal/mca/pmix/pmix3x/pmix/src/mca/gds/ds12/gds_ds12_lock_pthread.c b/opal/mca/pmix/pmix3x/pmix/src/mca/gds/ds12/gds_ds12_lock_pthread.c index 57177ef500..0bcce2b769 100644 --- a/opal/mca/pmix/pmix3x/pmix/src/mca/gds/ds12/gds_ds12_lock_pthread.c +++ b/opal/mca/pmix/pmix3x/pmix/src/mca/gds/ds12/gds_ds12_lock_pthread.c @@ -199,20 +199,16 @@ void pmix_ds12_lock_finalize(pmix_common_dstor_lock_ctx_t *lock_ctx) (ds12_lock_pthread_ctx_t*)*lock_ctx; if (NULL == pthread_lock) { - PMIX_ERROR_LOG(PMIX_ERR_NOT_FOUND); return; } if (0 != pthread_rwlock_destroy(pthread_lock->rwlock)) { - PMIX_ERROR_LOG(PMIX_ERROR); return; } if (NULL == pthread_lock->segment) { - PMIX_ERROR_LOG(PMIX_ERROR); return; } if (NULL == pthread_lock->lockfile) { - PMIX_ERROR_LOG(PMIX_ERROR); return; }