From c4026221a1c055f2b9e8c5bcd77759dcf3ab1d52 Mon Sep 17 00:00:00 2001 From: Sergei Volkov Date: Thu, 11 Jul 2024 10:01:43 +0200 Subject: [PATCH] HH-222350 update waited error description --- frontik/handler.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontik/handler.py b/frontik/handler.py index 05d91dbf2..6a6301d7a 100644 --- a/frontik/handler.py +++ b/frontik/handler.py @@ -971,7 +971,8 @@ def _execute_http_client_method( ) -> Future[RequestResult]: if waited and (self.is_finished() or self.finish_group.is_finished()): handler_logger.info( - 'attempted to make waited http request to %s %s in finished handler, ignoring', + 'attempted to make waited http request to %s %s in finished handler, ' + 'ignoring. change "waited" method parameter to send it', host, path, )