Need all 8 zeros for cc-metric-collector.

This commit is contained in:
Joachim Meyer 2023-02-07 17:01:34 +01:00
parent 019bfa5ee9
commit 4c22c4c6eb

View File

@ -296,7 +296,7 @@ CCSyncPlugin::getAccelerators(const CondorJob &job,
while (std::getline(gpuStream, gpu, ',')) { while (std::getline(gpuStream, gpu, ',')) {
if (auto gpuIt = hostIt->second.find(gpu); if (auto gpuIt = hostIt->second.find(gpu);
gpuIt != hostIt->second.end()) { gpuIt != hostIt->second.end()) {
gpus.push_back(gpuIt->second); gpus.push_back("0000" + gpuIt->second);
} else { } else {
dprintf(D_ALWAYS, "Didn't find GPU '%s' for '%s'\n", gpu.c_str(), dprintf(D_ALWAYS, "Didn't find GPU '%s' for '%s'\n", gpu.c_str(),
hostname.c_str()); hostname.c_str());
@ -400,7 +400,7 @@ void CCSyncPlugin::endTransaction() {
continue; // not yet ready continue; // not yet ready
dprintf(D_VERBOSE, "JobStatus: %s\n", job["JobStatus"].c_str()); dprintf(D_VERBOSE, "JobStatus: %s\n", job["JobStatus"].c_str());
int state = std::stoi(job["JobStatus"]), lastState; int state = std::stoi(job["JobStatus"]), lastState{};
if (auto lastStateIt = job.find("LastJobStatus"); if (auto lastStateIt = job.find("LastJobStatus");
lastStateIt != job.end()) { lastStateIt != job.end()) {