diff options
4 files changed, 7 insertions, 7 deletions
diff --git a/src/third_party/wiredtiger/cmake/third_party/azure_sdk.cmake b/src/third_party/wiredtiger/cmake/third_party/azure_sdk.cmake index 27482215577..ab7e285c9a1 100644 --- a/src/third_party/wiredtiger/cmake/third_party/azure_sdk.cmake +++ b/src/third_party/wiredtiger/cmake/third_party/azure_sdk.cmake @@ -21,7 +21,7 @@ set(azure_storage_common_lib_location) set(azure_sdk_include_location) if(IMPORT_AZURE_SDK_PACKAGE) - # FIXME-WT-10560 + # FIXME-WT-10555 The package import will be implemented in another ticket. message(FATAL_ERROR "Azure SDK package import is not yet supported.") endif() diff --git a/src/third_party/wiredtiger/ext/storage_sources/azure_store/azure_storage_source.cpp b/src/third_party/wiredtiger/ext/storage_sources/azure_store/azure_storage_source.cpp index ced763c6f0e..6b087428be9 100644 --- a/src/third_party/wiredtiger/ext/storage_sources/azure_store/azure_storage_source.cpp +++ b/src/third_party/wiredtiger/ext/storage_sources/azure_store/azure_storage_source.cpp @@ -440,7 +440,7 @@ azure_file_system_exists( } if (!*existp) - log->log_err_msg( + log->log_debug_message( "azure_file_system_exists: Object: " + std::string(name) + " does not exist in Azure."); else log->log_debug_message( diff --git a/src/third_party/wiredtiger/import.data b/src/third_party/wiredtiger/import.data index 1171a133baa..8f814e334e0 100644 --- a/src/third_party/wiredtiger/import.data +++ b/src/third_party/wiredtiger/import.data @@ -2,5 +2,5 @@ "vendor": "wiredtiger", "github": "wiredtiger/wiredtiger.git", "branch": "mongodb-master", - "commit": "68383b36335d20936cceeb9fdf610a7cc0d1ccbe" + "commit": "b8b81fd66374fb6c413e2613db8789793d5084cd" } diff --git a/src/third_party/wiredtiger/test/evergreen.yml b/src/third_party/wiredtiger/test/evergreen.yml index d132f9210f9..71aa9482356 100755 --- a/src/third_party/wiredtiger/test/evergreen.yml +++ b/src/third_party/wiredtiger/test/evergreen.yml @@ -867,13 +867,13 @@ variables: # Configure flags for tiered storage Azure extension. - &configure_flags_tiered_storage_azure - ENABLE_S3: -DENABLE_AZURE=1 - IMPORT_S3_SDK: -DIMPORT_AZURE_SDK=external + ENABLE_AZURE: -DENABLE_AZURE=1 + IMPORT_AZURE_SDK: -DIMPORT_AZURE_SDK=external # Configure flags for tiered storage GCP extension. - &configure_flags_tiered_storage_gcp - ENABLE_S3: -DENABLE_GCP=1 - IMPORT_S3_SDK: -DIMPORT_GCP_SDK=external + ENABLE_GCP: -DENABLE_GCP=1 + IMPORT_GCP_SDK: -DIMPORT_GCP_SDK=external # Configure flags for tiered storage S3 extension. - &configure_flags_tiered_storage_s3 |