From c11fa8152afce89bddeca0ca92693e00c08a34af Mon Sep 17 00:00:00 2001 From: Johannes Erdfelt Date: Tue, 6 Sep 2011 19:12:36 +0000 Subject: Default to 0 seconds (off) --- nova/compute/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nova/compute') diff --git a/nova/compute/api.py b/nova/compute/api.py index 6037903c4..cb6cb6ab2 100644 --- a/nova/compute/api.py +++ b/nova/compute/api.py @@ -49,7 +49,7 @@ FLAGS = flags.FLAGS flags.DECLARE('vncproxy_topic', 'nova.vnc') flags.DEFINE_integer('find_host_timeout', 30, 'Timeout after NN seconds when looking for a host.') -flags.DEFINE_integer('delete_instance_interval', 43200, +flags.DEFINE_integer('delete_instance_interval', 0, 'Time in seconds to wait to scrub deleted instances.') -- cgit