openstack-ansible-os_glance/templates/glance-scrubber.conf.j2
Kevin Carter 7f4c2acbac Disable stderr logging
OSLO logging currently defaults the 'use_stderr' option to True
which results duplicate logs in service daemon logs for both
upstart and systemd. To correct this issue the use_stderr
option has been set to false.

Change-Id: I40e18d531d7551c6a460449dd17116abd68187b2
Closes-Bug: 1588051
Signed-off-by: Kevin Carter <kevin.carter@rackspace.com>
2016-08-04 17:43:23 +00:00

25 lines
690 B
Django/Jinja

# {{ ansible_managed }}
[DEFAULT]
# Disable stderr logging
use_stderr = False
debug = {{ debug }}
# Log to this file. Make sure you do not set the same log file for both the API
# and registry servers!
#
# If `log_file` is omitted then log messages are
# sent to stdout as a fallback.
log_file = /var/log/glance/scrubber.log
# Should we run our own loop or rely on cron/scheduler to run us
daemon = False
# Loop time between checking for new items to schedule for delete
wakeup_time = 300
# Address to find the registry server for cleanups
registry_host = {{ glance_registry_bind_address }}
# Port the registry server is listening on
registry_port = {{ glance_registry_service_port }}