From cc35b7ed25e8b41ca450eabd4578e5e1eeac0fda Mon Sep 17 00:00:00 2001 From: Aleksandr Ivanov Date: Tue, 23 Jul 2024 11:55:18 +0300 Subject: [PATCH] debug ntcfactory timeout Signed-off-by: Aleksandr Ivanov --- src/groups/mwc/mwcio/mwcio_ntcchannelfactory.t.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/groups/mwc/mwcio/mwcio_ntcchannelfactory.t.cpp b/src/groups/mwc/mwcio/mwcio_ntcchannelfactory.t.cpp index a9762040f..f6f4b0139 100644 --- a/src/groups/mwc/mwcio/mwcio_ntcchannelfactory.t.cpp +++ b/src/groups/mwc/mwcio/mwcio_ntcchannelfactory.t.cpp @@ -100,18 +100,18 @@ static const ChannelWatermarkType::Enum WAT_LOW = // Adjust attempt interval depending on the platform #if defined(BSLS_PLATFORM_OS_SOLARIS) || defined(BSLS_PLATFORM_OS_AIX) -static const int k_ATTEMPT_INTERVAL_MS = 100; +static const int k_ATTEMPT_INTERVAL_MS = 200; #elif defined( \ __has_feature) // Clang-supported method for checking sanitizers. static const int k_ATTEMPT_INTERVAL_MS = (__has_feature(memory_sanitizer) || __has_feature(thread_sanitizer) || __has_feature(undefined_behavior_sanitizer)) - ? 100 + ? 200 : 10; #elif defined(__SANITIZE_MEMORY__) || defined(__SANITIZE_THREAD__) || \ defined(__SANITIZE_UNDEFINED__) // GCC-supported macros for checking MSAN, TSAN and UBSAN. -static const int k_ATTEMPT_INTERVAL_MS = 100; +static const int k_ATTEMPT_INTERVAL_MS = 200; #else static const int k_ATTEMPT_INTERVAL_MS = 10; #endif