From fed1294878de06af89b0c81157cddc342c8094ad Mon Sep 17 00:00:00 2001 From: Faiyaz Ahmed <faiyaza@cs.princeton.edu> Date: Fri, 6 Apr 2007 17:38:14 +0000 Subject: [PATCH] Increase threshold to a week for slice creation, 2 weeks for suspension. --- policy.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/policy.py b/policy.py index be13066..5caeaeb 100644 --- a/policy.py +++ b/policy.py @@ -3,7 +3,7 @@ # # Faiyaz Ahmed <faiyaza@cs.princeton.edu> # -# $Id: policy.py,v 1.10 2007/01/24 19:29:44 mef Exp $ +# $Id: policy.py,v 1.11 2007/04/06 16:16:54 faiyaza Exp $ # # Policy Engine. @@ -35,8 +35,8 @@ PLCEMAIL="support@planet-lab.org" #Thresholds (DAYS) SPERDAY = 86400 -PITHRESH = 2 * SPERDAY -SLICETHRESH = 5 * SPERDAY +PITHRESH = 7 * SPERDAY +SLICETHRESH = 14 * SPERDAY # Days before attempting rins again RINSTHRESH = 5 * SPERDAY -- 2.47.0