From e2df5978e2dd18c5691f5a9a8b30fda5f53a6eda Mon Sep 17 00:00:00 2001
From: Moe Jette <jette1@llnl.gov>
Date: Wed, 19 Mar 2003 22:26:21 +0000
Subject: [PATCH] Don't free the credential context at all. This unfreed
 memory, but we don't need to worry about the backup controller freeing it
 then trying to use it again when it takes over a second time.

---
 src/slurmctld/controller.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/slurmctld/controller.c b/src/slurmctld/controller.c
index 9532c098d56..dd51577d2ff 100644
--- a/src/slurmctld/controller.c
+++ b/src/slurmctld/controller.c
@@ -342,7 +342,6 @@ static void *_slurmctld_signal_hand(void *no_data)
 		case SIGTERM:	/* kill -15 */
 			info("Terminate signal (SIGINT or SIGTERM) received");
 			shutdown_time = time(NULL);
-			slurm_cred_ctx_destroy(cred_ctx);
 			/* send REQUEST_SHUTDOWN_IMMEDIATE RPC */
 			_slurmctld_shutdown();
 			pthread_join(thread_id_rpc, NULL);
-- 
GitLab