From cb09afab5ff1cdc24215d8e3f86cbfcc7027944b Mon Sep 17 00:00:00 2001 From: Steve Wirt Date: Wed, 18 Oct 2023 09:23:33 -0400 Subject: [PATCH] Updating comment to be more truthful. --- .../src/EventSubscriber/QueueItemProcessedEventSubscriber.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docroot/modules/custom/va_gov_post_api/src/EventSubscriber/QueueItemProcessedEventSubscriber.php b/docroot/modules/custom/va_gov_post_api/src/EventSubscriber/QueueItemProcessedEventSubscriber.php index d452dae5f7..f72899e8a6 100644 --- a/docroot/modules/custom/va_gov_post_api/src/EventSubscriber/QueueItemProcessedEventSubscriber.php +++ b/docroot/modules/custom/va_gov_post_api/src/EventSubscriber/QueueItemProcessedEventSubscriber.php @@ -116,7 +116,7 @@ public function onQueueItemProcessed(QueueItemProcessedEvent $event) { // The response might have been 200 from the TIC not the Facility API. $message = sprintf('Item %s Posted with a 200, but had an unexpected response with a size: %F phrase: %s', $item_data['uid'], $size, $response_phrase); $this->logger->get('va_gov_post_api')->warning($message); - // Add the item that did not get processed back to the queue. + // Add the item that might not have been processed back to the queue. $this->postQueue->addToQueue($item_data); } }