From f1f50628b7d0284c0bd35156c737a43b9a561040 Mon Sep 17 00:00:00 2001 From: Adam Wegrzynek Date: Tue, 13 Apr 2021 12:59:18 +0200 Subject: [PATCH] Fix left-over test and release v3.8.1 (#242) --- CMakeLists.txt | 2 +- test/testMonitoringFactory.cxx | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index fa6116b09..b7a364122 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -17,7 +17,7 @@ endif() # Define project project(Monitoring - VERSION 3.8.0 + VERSION 3.8.1 DESCRIPTION "O2 Monitoring library" LANGUAGES CXX ) diff --git a/test/testMonitoringFactory.cxx b/test/testMonitoringFactory.cxx index 0896f87e1..11c19ab97 100644 --- a/test/testMonitoringFactory.cxx +++ b/test/testMonitoringFactory.cxx @@ -41,9 +41,6 @@ BOOST_AUTO_TEST_CASE(verbosity) auto influxDebug = Monitoring::GetBackend(influxDebugUrl); BOOST_CHECK_EQUAL(static_cast::type>(influxDebug->getVerbosity()), 2); - std::string influxUnixUrl = "influxdb-unix://127.0.0.1:1234/?db=test"; - auto influxHttp = Monitoring::GetBackend(influxUnixUrl); - std::string ilProdUrl = "stdout:///info"; auto ilProd = Monitoring::GetBackend(ilProdUrl); BOOST_CHECK_EQUAL(static_cast::type>(ilProd->getVerbosity()), 1);