From 01c111c4ea9c829e0280426f57a6e9a368cfec7a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?R=C3=B3bert=20Papp?= <papp.robert.s@gmail.com>
Date: Mon, 5 Sep 2022 14:45:44 +0100
Subject: [PATCH] fix(http): typo in logs (#17634)

---
 lib/util/http/queue.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/util/http/queue.ts b/lib/util/http/queue.ts
index 71b387a93b..a645f905f1 100644
--- a/lib/util/http/queue.ts
+++ b/lib/util/http/queue.ts
@@ -21,7 +21,7 @@ export function getQueue(url: string): PQueue | null {
       logger.debug({ concurrency, host }, 'Using queue');
       queue = new PQueue({ concurrency });
     } else {
-      logger.debug({ host }, 'No concurency limits');
+      logger.debug({ host }, 'No concurrency limits');
     }
   }
   hostQueues.set(host, queue);
-- 
GitLab