21f31ac35a
This patch reduces the duration of some tests related to Redis and Mongo so that developers can get faster turnaround on feedback when testing locally or waiting on the py27 gate. Change-Id: Ie50a0f5c41ff1a5fd0154dd895220df9c6e64fee
21 lines
403 B
Plaintext
21 lines
403 B
Plaintext
[DEFAULT]
|
|
debug = False
|
|
verbose = False
|
|
|
|
[drivers]
|
|
transport = wsgi
|
|
storage = redis
|
|
|
|
[drivers:transport:wsgi]
|
|
port = 8888
|
|
|
|
[drivers:storage:redis]
|
|
uri = redis://127.0.0.1:6379
|
|
|
|
# NOTE(kgriffs): Reduce from the default of 10 to reduce the
|
|
# duration of related tests
|
|
max_reconnect_attempts = 3
|
|
|
|
# NOTE(kgriffs): Reduce from the default of 1 to reduce the
|
|
# duration of related tests
|
|
reconnect_sleep = 0.1 |