From 7f817c436d2e444969ad6e673032aaa9a09412b5 Mon Sep 17 00:00:00 2001 From: Anton Pryakhin Date: Tue, 16 Jul 2024 18:06:01 +0300 Subject: [PATCH] mqbnet: Stop checking useNtf flag (#358) Signed-off-by: Anton Pryakhin --- src/groups/mqb/mqbnet/mqbnet_tcpsessionfactory.cpp | 7 ------- src/python/blazingmq/dev/configurator/__init__.py | 1 - 2 files changed, 8 deletions(-) diff --git a/src/groups/mqb/mqbnet/mqbnet_tcpsessionfactory.cpp b/src/groups/mqb/mqbnet/mqbnet_tcpsessionfactory.cpp index b136e342c8..e7e7ab07db 100644 --- a/src/groups/mqb/mqbnet/mqbnet_tcpsessionfactory.cpp +++ b/src/groups/mqb/mqbnet/mqbnet_tcpsessionfactory.cpp @@ -958,13 +958,6 @@ int TCPSessionFactory::start(bsl::ostream& errorDescription) int rc = 0; - const mqbcfg::AppConfig& appConfig = mqbcfg::BrokerConfig::get(); - - if (!appConfig.networkInterfaces().tcpInterface().value().useNtf()) { - BALL_LOG_WARN << "Ignoring interface property 'useNtf' (false) " - << "and using ntf, because only ntf supported"; - } - ntca::InterfaceConfig interfaceConfig = ntcCreateInterfaceConfig(d_config); bslma::ManagedPtr channelFactory; diff --git a/src/python/blazingmq/dev/configurator/__init__.py b/src/python/blazingmq/dev/configurator/__init__.py index b994cd3da9..248b9ffc13 100644 --- a/src/python/blazingmq/dev/configurator/__init__.py +++ b/src/python/blazingmq/dev/configurator/__init__.py @@ -559,7 +559,6 @@ class Proto: node_low_watermark=5242880, node_high_watermark=1073741824, heartbeat_interval_ms=3000, - use_ntf=False, ), ), bmqconf_config=mqbcfg.BmqconfConfig(cache_ttlseconds=30),