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
@@ -47,6 +53,8 @@ public function send($topic, $message)
47
53
$message->setPriority(MessagePriority::NORMAL);
48
54
}
49
55
56
+
$this->extension->onPreSend($topic, $message);
57
+
50
58
if (Message::SCOPE_MESSAGE_BUS == $message->getScope()) {
51
59
if ($message->getProperty(Config::PARAMETER_PROCESSOR_QUEUE_NAME)) {
52
60
thrownew \LogicException(sprintf('The %s property must not be set for messages that are sent to message bus.', Config::PARAMETER_PROCESSOR_QUEUE_NAME));
@@ -68,6 +76,8 @@ public function send($topic, $message)
68
76
} else {
69
77
thrownew \LogicException(sprintf('The message scope "%s" is not supported.', $message->getScope()));
0 commit comments