From dee47e7a6615cde899ae2f0a8fde948d7dd57289 Mon Sep 17 00:00:00 2001 From: Konstantin Pastbin Date: Sun, 6 Jul 2025 23:14:52 +0700 Subject: [PATCH] [core] Disable servers pinging before starting downloads Signed-off-by: Konstantin Pastbin --- storage/http_map_files_downloader.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/storage/http_map_files_downloader.hpp b/storage/http_map_files_downloader.hpp index a57c7a10f..6eca62e96 100644 --- a/storage/http_map_files_downloader.hpp +++ b/storage/http_map_files_downloader.hpp @@ -18,7 +18,7 @@ namespace storage /// and file downloading. // // *NOTE*, this class is not thread-safe. -class HttpMapFilesDownloader : public MapFilesDownloaderWithPing +class HttpMapFilesDownloader : public MapFilesDownloader { public: virtual ~HttpMapFilesDownloader(); @@ -29,7 +29,7 @@ public: QueueInterface const & GetQueue() const override; private: - // MapFilesDownloaderWithServerList overrides: + // MapFilesDownloader overrides: void Download(QueuedCountry && queuedCountry) override; void Download();