Skip to content

Don't create new broker and producer instances

Tim Schoof requested to merge avoid_new_broker_instances into master

Before, new broker and producer instances were temporarily created for each substream and immediately replaced with the instances stored in the application object. The large amount of new instances is unnecessary and triggered a resource leak in the Python broker wrapper.

Merge request reports