rgw log data: False
rgw log meta: False
- rgw:
+ default_idle_timeout: 300
regions:
zero:
api name: api1
master zone: r1z1
zones: [r1z1]
client.0:
- idle_timeout: 300
valgrind: [--tool=memcheck]
system user:
name: client0-system-user
access key: 1te6NH5mcdcq0Tc5i8i2
secret key: 1y4IOauQoL18Gp2zM7lC1vLmoawgqcYPbYGcWfXv
client.1:
- idle_timeout: 300
valgrind: [--tool=memcheck]
system user:
name: client1-system-user
system_type = teuthology.get_system_type(remote)
if not conf:
conf = {}
- idle_timeout = conf.get('idle_timeout', 30)
+ idle_timeout = conf.get('idle_timeout', ctx.rgw.default_idle_timeout)
if system_type == 'deb':
mod_path = '/usr/lib/apache2/modules'
print_continue = 'on'
rgw region root pool: .rgw.rroot.bar
rgw zone root pool: .rgw.zroot.bar-secondary
- rgw:
+ default_idle_timeout: 30
ec-data-pool: true
regions:
foo:
if 'ec-data-pool' in config:
ctx.rgw.ec_data_pool = bool(config['ec-data-pool'])
del config['ec-data-pool']
+ ctx.rgw.default_idle_timeout = 30
+ if 'idle_timeout' in config:
+ ctx.rgw.default_idle_timeout = int(config['idle_timeout'])
+ del config['idle_timeout']
ctx.rgw.cache_pools = False
if 'cache-pools' in config:
ctx.rgw.cache_pools = bool(config['cache-pools'])