Reducing debug for glance.

This commit is contained in:
Joshua Harlow 2012-02-09 17:33:59 -08:00
parent 5aa35cdba4
commit 93363a2681
3 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@
verbose = True
# Show debugging output in logs (sets DEBUG log level output)
debug = True
debug = False
# Which backend store should Glance use by default is not specified
# in a request to add a new image to Glance? Default: 'file'

View File

@ -6,7 +6,7 @@
verbose = True
# Show debugging output in logs (sets DEBUG log level output)
debug = True
debug = False
# Address to bind the registry server
bind_host = 0.0.0.0

View File

@ -79,7 +79,7 @@ def _status(distro):
check_exit_code=False,
params=mp)
sysout = result[0][0]
if sysout.find("running") != -1:
if sysout.find("running") != -1 or sysout.find('start') != -1:
return _ALIVE
else:
return _DEAD