Fix default value type for wait_for_dns option

wait_for_dns value should be an integer so default value was changed from
False to 0.

Reviewed-By: Martin Kosek <mkosek@redhat.com>
This commit is contained in:
Petr Spacek 2015-01-13 10:14:43 +01:00 committed by Martin Kosek
parent a18ef90284
commit 2ff8ced517

View File

@ -147,7 +147,7 @@ DEFAULT_CONFIG = (
('debug', False),
('startup_traceback', False),
('mode', 'production'),
('wait_for_dns', False),
('wait_for_dns', 0),
# CA plugin:
('ca_host', FQDN), # Set in Env._finalize_core()