From 0f26c961549667e6b8326127e56686fcc695f329 Mon Sep 17 00:00:00 2001 From: Cid Lopes Date: Wed, 4 Sep 2024 13:33:54 +0300 Subject: [PATCH] Clarify bulk publisher log error message --- Model/Service/Sync/AbstractBulkPublisher.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Model/Service/Sync/AbstractBulkPublisher.php b/Model/Service/Sync/AbstractBulkPublisher.php index 13ea007d5..b8999ce5f 100644 --- a/Model/Service/Sync/AbstractBulkPublisher.php +++ b/Model/Service/Sync/AbstractBulkPublisher.php @@ -154,7 +154,9 @@ private function publishCollectionToMessageQueue( ); if (!$result) { /** @phan-suppress-next-line PhanTypeMismatchArgumentProbablyReal */ - throw new LocalizedException(__('Something went wrong while processing the request.')); + throw new LocalizedException(__( + 'Something went wrong while publishing bulk to RabbitMQ. Please check your connection' + )); } }