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
Sequence handling does not work, when Message Logging is turned off. In this case the responses are not collected to the sequences, and stub response generation is not possible.
This is because turning on/off message handling is adding/removing relevant processors by com.epam.wilma.core.toggle.message.MessageLoggingToggle class, but extracting and storing the sequence response is in the ResponseQueueListener class, that works only when the processor is enabled.
Need to remove the sequence-response handling dependence on message logging ON status - that feature should be always enabled.
The text was updated successfully, but these errors were encountered:
Sequence handling does not work, when Message Logging is turned off. In this case the responses are not collected to the sequences, and stub response generation is not possible.
This is because turning on/off message handling is adding/removing relevant processors by
com.epam.wilma.core.toggle.message.MessageLoggingToggle
class, but extracting and storing the sequence response is in theResponseQueueListener
class, that works only when the processor is enabled.Need to remove the sequence-response handling dependence on message logging ON status - that feature should be always enabled.
The text was updated successfully, but these errors were encountered: