From 1c039d2cf331e5cf0e08aa6147a636991f07b1e9 Mon Sep 17 00:00:00 2001 From: Alexey Milovidov Date: Mon, 3 Aug 2020 04:44:58 +0300 Subject: [PATCH] Attempt to fix "Arcadia" build --- src/Interpreters/Context.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Interpreters/Context.cpp b/src/Interpreters/Context.cpp index 08cf7bb5fe7..01097a09cbb 100644 --- a/src/Interpreters/Context.cpp +++ b/src/Interpreters/Context.cpp @@ -1800,10 +1800,12 @@ void Context::updateStorageConfiguration(const Poco::Util::AbstractConfiguration } } +#if !defined(ARCADIA_BUILD) if (shared->storage_s3_settings) { shared->storage_s3_settings->loadFromConfig("s3", config); } +#endif }