mirror of
https://gitlab.cs.uni-saarland.de/hpc/cc-condor-sync.git
synced 2024-12-26 13:39:05 +01:00
Need all 8 zeros for cc-metric-collector.
This commit is contained in:
parent
019bfa5ee9
commit
4c22c4c6eb
@ -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()) {
|
||||||
|
Loading…
Reference in New Issue
Block a user