
We recently enabled admin_mode=True in devstack. This raised an issue with the way we register endpoints. The redis driver has no support for pooling yet and this made Zaqar fail when running in admin mode because it tried to register pool endpoints as well. Although this issue is a side-effect caused by the missing feature, it does represent an error and a need to improve the way endpoints are registered. Change-Id: I0f65bb25383b889048c900daa657121f64234663 Closes-bug: #1399554
14 lines
159 B
Plaintext
14 lines
159 B
Plaintext
[DEFAULT]
|
|
pooling = True
|
|
admin_mode = True
|
|
|
|
[drivers]
|
|
transport = wsgi
|
|
storage = sqlalchemy
|
|
|
|
[drivers:transport:wsgi]
|
|
bind = 0.0.0.0
|
|
port = 8888
|
|
workers = 20
|
|
|