chore(streamer): remove vendored cvmmap client

This commit is contained in:
2026-03-06 14:53:04 +08:00
parent ec492fe985
commit 769d36f86f
3 changed files with 2 additions and 6 deletions
-3
View File
@@ -1,6 +1,3 @@
[submodule "lib/cvmmap-client-cpp"]
path = lib/cvmmap-client-cpp
url = https://github.com/crosstyan/cvmmap-cpp-client
[submodule "lib/CLI11"] [submodule "lib/CLI11"]
path = lib/CLI11 path = lib/CLI11
url = https://github.com/CLIUtils/CLI11 url = https://github.com/CLIUtils/CLI11
+2 -2
View File
@@ -93,11 +93,11 @@ public:
client_ = std::move(client); client_ = std::move(client);
} catch (const std::exception &e) { } catch (const std::exception &e) {
prepared_.store(false, std::memory_order_release); prepared_.store(false, std::memory_order_release);
return std::unexpected(std::string("cvmmap-client-cpp init failed: ") + e.what()); return std::unexpected(std::string("cvmmap-core client init failed: ") + e.what());
} }
spdlog::info( spdlog::info(
"real source backend initialized via cvmmap-client-cpp: target='{}'", "real source backend initialized via cvmmap-core client: target='{}'",
client_target_); client_target_);
return {}; return {};
} }