diff --git a/be/src/runtime/etl_job_mgr.cpp b/be/src/runtime/etl_job_mgr.cpp index 756a29b246..272397b235 100644 --- a/be/src/runtime/etl_job_mgr.cpp +++ b/be/src/runtime/etl_job_mgr.cpp @@ -49,7 +49,7 @@ std::string EtlJobMgr::to_load_error_http_path(const std::string& file_name) { std::stringstream url; url << "http://" << BackendOptions::get_localhost() << ":" << config::webserver_port << "/api/_load_error_log?" - << "&file=" << file_name; + << "file=" << file_name; return url.str(); } diff --git a/be/src/runtime/fragment_mgr.cpp b/be/src/runtime/fragment_mgr.cpp index 0166d2d3c5..af7922def0 100644 --- a/be/src/runtime/fragment_mgr.cpp +++ b/be/src/runtime/fragment_mgr.cpp @@ -221,7 +221,7 @@ std::string FragmentExecState::to_load_error_http_path(const std::string& file_n std::stringstream url; url << "http://" << BackendOptions::get_localhost() << ":" << config::webserver_port << "/api/_load_error_log?" - << "&file=" << file_name; + << "file=" << file_name; return url.str(); }