-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rabbitmq to Devel #86
Conversation
self._logger = logger | ||
self._plugins_message_template_generators = PluginsMessageTemplateEngine(logger) | ||
self._plugins_message_validators = PluginsMessageValidator(logger) | ||
self._plugins = plugins |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change is incorrect, the template generator and message validator were separated from the plugins object intentionally. The MessageFactory only needs to be able to generate templates and validate them, it doesn't need to run the plugins which was the reason for the change. Hopefully, that makes sense.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Though I don't know if the gitdiff is working correctly here or not still, so this is just a guess. Hopefully, our patch command isn't messing with us here.
…th Josh's abstractions.
@par-hermes format |
Addresses several open tasks. Including the switch to rabbitMQ.