Unified format of boolean params in conf files
In swift conf files, boolean options use different format: some use true/false, and some use True/False. This patch is aim to using lowcase true/false to unify boolean params formats in swift conf files. Fix Bug #1203421 Change-Id: I3e1bfc6e43231f51e0710aa54869f3774ee896b1
This commit is contained in:
@@ -48,7 +48,7 @@ use = egg:swift#object
|
||||
# set log_name = object-server
|
||||
# set log_facility = LOG_LOCAL0
|
||||
# set log_level = INFO
|
||||
# set log_requests = True
|
||||
# set log_requests = true
|
||||
# set log_address = /dev/log
|
||||
#
|
||||
# node_timeout = 3
|
||||
@@ -63,7 +63,7 @@ use = egg:swift#object
|
||||
#
|
||||
# If true, objects for authenticated GET requests may be kept in buffer cache
|
||||
# if small enough
|
||||
# keep_cache_private = False
|
||||
# keep_cache_private = false
|
||||
#
|
||||
# on PUTs, sync data every n MB
|
||||
# mb_per_sync = 512
|
||||
@@ -82,7 +82,7 @@ use = egg:swift#object
|
||||
# set to a True value (e.g. "True" or "1"). To handle only non-replication
|
||||
# verbs, set to "False". Unless you have a separate replication network, you
|
||||
# should not specify any value for "replication_server".
|
||||
# replication_server = False
|
||||
# replication_server = false
|
||||
# A value of 0 means "don't use thread pools". A reasonable starting point is 4.
|
||||
# threads_per_disk = 0
|
||||
|
||||
|
||||
Reference in New Issue
Block a user