修复ci失败问题

This commit is contained in:
PioLing 2025-04-14 11:49:29 +08:00 committed by GitHub
parent 41bdfa0755
commit 199ab0a382
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1191,7 +1191,7 @@ void installWebApi() {
auto dst_url = allArgs["dst_url"]; auto dst_url = allArgs["dst_url"];
auto retry_count = allArgs["retry_count"].empty() ? -1 : allArgs["retry_count"].as<int>(); auto retry_count = allArgs["retry_count"].empty() ? -1 : allArgs["retry_count"].as<int>();
EventPollerPool::Instance().getPoller(false)->async([=](){ EventPollerPool::Instance().getPoller(false)->async([=]() mutable {
addStreamPusherProxy(allArgs["schema"], addStreamPusherProxy(allArgs["schema"],
allArgs["vhost"], allArgs["vhost"],
allArgs["app"], allArgs["app"],
@ -1260,7 +1260,7 @@ void installWebApi() {
vhost = allArgs["vhost"]; vhost = allArgs["vhost"];
} }
auto tuple = MediaTuple { vhost, allArgs["app"], allArgs["stream"], "" }; auto tuple = MediaTuple { vhost, allArgs["app"], allArgs["stream"], "" };
EventPollerPool::Instance().getPoller(false)->async([=]() { EventPollerPool::Instance().getPoller(false)->async([=]() mutable {
addStreamProxy(tuple, addStreamProxy(tuple,
allArgs["url"], allArgs["url"],
retry_count, retry_count,