Allow using redis as a Zaqar messaging backend.

Change-Id: I66ab40f8f993fbf4c3c9b1ded56de1f7a1a26c0c
This commit is contained in:
Thomas Herve 2017-08-31 11:46:49 +02:00
parent 11cec1c6f1
commit 34c4b7211a
2 changed files with 6 additions and 0 deletions

View File

@ -104,6 +104,8 @@ class tripleo::profile::base::zaqar (
class {'::zaqar::messaging::mongodb':
uri => $mongo_database_connection,
}
} elsif $messaging_store == 'redis' {
include ::zaqar::messaging::redis
} else {
fail("unsupported Zaqar messaging_store set: ${messaging_store}")
}

View File

@ -0,0 +1,4 @@
---
features:
- Allow using Redis as Zaqar messaging backend.