10b0fc196d
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: I76adb408232808b7a5c953ad384ab611725bdd66 Closes-Bug: 1588051 Signed-off-by: Kevin Carter <kevin.carter@rackspace.com>
35 lines
818 B
Django/Jinja
35 lines
818 B
Django/Jinja
# {{ ansible_managed }}
|
|
|
|
[DEFAULT]
|
|
# Disable stderr logging
|
|
use_stderr = False
|
|
swift_dir = /etc/swift
|
|
user = {{ swift_system_user_name }}
|
|
log_facility = LOG_LOCAL3
|
|
{% include "statsd.j2" %}
|
|
|
|
[container-reconciler]
|
|
# The reconciler will re-attempt reconciliation if the source object is not
|
|
# available up to reclaim_age seconds before it gives up and deletes the entry
|
|
# in the queue.
|
|
reclaim_age = {{ reclaim_age | default(604800) }}
|
|
# The cycle time of the daemon
|
|
interval = 30
|
|
# Server errors from requests will be retried by default
|
|
request_tries = 3
|
|
|
|
[pipeline:main]
|
|
pipeline = catch_errors proxy-logging cache proxy-server
|
|
|
|
[app:proxy-server]
|
|
use = egg:swift#proxy
|
|
|
|
[filter:cache]
|
|
use = egg:swift#memcache
|
|
|
|
[filter:proxy-logging]
|
|
use = egg:swift#proxy_logging
|
|
|
|
[filter:catch_errors]
|
|
use = egg:swift#catch_errors
|