You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When creating a repeater, we are currently reusing a global instance of RMQConnectionManager. This approach is causing unexpected behavior and may lead to potential issues.
Steps to Reproduce:
Create two repeaters using the RepeaterFactory.
Perform operations or actions on the repeater.
Expected Behavior:
The repeater should function correctly, using a scoped RMQConnectionManager instance specific to the repeater with the proper credentials.
Actual Behavior:
Due to the reuse of the global instance of RMQConnectionManager, the repeater may encounter unexpected behavior, such as incorrect handling of auth.
The text was updated successfully, but these errors were encountered:
When creating a repeater, we are currently reusing a global instance of
RMQConnectionManager
. This approach is causing unexpected behavior and may lead to potential issues.Steps to Reproduce:
RepeaterFactory
.Expected Behavior:
The repeater should function correctly, using a scoped
RMQConnectionManager
instance specific to the repeater with the proper credentials.Actual Behavior:
Due to the reuse of the global instance of
RMQConnectionManager
, the repeater may encounter unexpected behavior, such as incorrect handling of auth.The text was updated successfully, but these errors were encountered: