From: Faiyaz Ahmed Date: Fri, 6 Apr 2007 17:38:14 +0000 (+0000) Subject: Increase threshold to a week for slice creation, 2 weeks for suspension. X-Git-Tag: Monitor-1.0-0~86 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=fed1294878de06af89b0c81157cddc342c8094ad;p=monitor.git Increase threshold to a week for slice creation, 2 weeks for suspension. --- diff --git a/policy.py b/policy.py index be13066..5caeaeb 100644 --- a/policy.py +++ b/policy.py @@ -3,7 +3,7 @@ # # Faiyaz Ahmed # -# $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