remove confusing & symbol (#168)

This commit is contained in:
LingBin
2017-12-27 21:42:03 +08:00
committed by GitHub
parent b981d70fe7
commit 0d3f401889
2 changed files with 2 additions and 2 deletions

View File

@ -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();
}

View File

@ -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();
}