From 99063507d36c30cda99aae9fb1ace95e2d743f4c Mon Sep 17 00:00:00 2001
From: Morris Jette <jette@schedmd.com>
Date: Thu, 22 May 2014 13:26:14 -0700
Subject: [PATCH] Fix slurmd slow suspend/resume time limit

Fix the limit at which slow suspend/resumes are logged
---
 src/slurmd/slurmd/req.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/slurmd/slurmd/req.c b/src/slurmd/slurmd/req.c
index 9a9e7408344..42b300ff0e7 100644
--- a/src/slurmd/slurmd/req.c
+++ b/src/slurmd/slurmd/req.c
@@ -3810,7 +3810,7 @@ _rpc_suspend_job(slurm_msg_t *msg)
 	_unlock_suspend_job(req->job_id);
 
 	END_TIMER;
-	if (DELTA_TIMER >= (time_slice * 10)) {
+	if (DELTA_TIMER >= (time_slice * 1000000)) {
 		if (req->op == SUSPEND_JOB) {
 			info("Suspend time for job_id %u was %s. "
 			     "Configure SchedulerTimeSlice higher.",
-- 
GitLab