| |
@@ -71,7 +71,7 @@
|
| |
topic_suffixes = []
|
| |
for parser in BaseEvent._parsers.values():
|
| |
topic_suffixes.extend(parser.topic_suffixes)
|
| |
- return ['{}.{}.'.format(pref.rstrip('.'), cat)
|
| |
+ return ['{}.{}'.format(pref.rstrip('.'), cat)
|
| |
for pref, cat
|
| |
in itertools.product(
|
| |
conf.messaging_topic_prefix,
|
| |
When topic is whole name already, adding a tailing dot will cause
freshmaker not be able to receive messages from expected topic.