Missing many files in last commit

In last commit, a lot of files has been missed
This commit is contained in:
morningman
2018-10-31 16:19:21 +08:00
parent 5d3fc80067
commit 051aced48d
596 changed files with 16703 additions and 18103 deletions

View File

@ -129,11 +129,9 @@ AgentStatus MasterServerClient::finish_task(
&client_status);
if (!client_status.ok()) {
OLAP_LOG_WARNING("master client, get client from cache failed."
"host: %s, port: %d, code: %d",
_master_info.network_address.hostname.c_str(),
_master_info.network_address.port,
client_status.code());
LOG(WARNING) << "master client. get client from cache failed. host: "
<< _master_info.network_address.hostname << ". port: " << _master_info.network_address.port
<< ". code: " << client_status.code();
return PALO_ERROR;
}
@ -212,11 +210,8 @@ AgentStatus MasterServerClient::report(const TReportRequest request, TMasterResu
}
}
} catch (TException& e) {
OLAP_LOG_WARNING("master client, finish report failed."
"host: %s, port: %d, code: %d",
_master_info.network_address.hostname.c_str(),
_master_info.network_address.port,
client_status.code());
LOG(WARNING) << "master client. finish report failed. host: " << _master_info.network_address.hostname
<< ". port: " << _master_info.network_address.port << ". code: " << client_status.code();
return PALO_ERROR;
}
@ -243,7 +238,7 @@ AgentStatus AgentUtils::rsync_from_remote(
cmd_stream << " --timeout=" << timeout_second;
}
cmd_stream << " " << remote_host << ":" << remote_file_path << " " << local_file_path;
OLAP_LOG_INFO("rsync cmd: %s", cmd_stream.str().c_str());
LOG(INFO) << "rsync cmd: " << cmd_stream.str();
FILE* fp = NULL;
fp = popen(cmd_stream.str().c_str(), "r");