Don't handle the ignoring of large jobs in Code, use submit transforms to NoMonitoring.

This commit is contained in:
Joachim Meyer
2025-08-06 12:56:53 +02:00
parent c1113f02bf
commit 230ecf386c

View File

@@ -431,16 +431,6 @@ void CCSyncPlugin::endTransaction() {
}
if (state == RUNNING) {
if (auto totalSubmitProcs = job.find("TotalSubmitProcs");
totalSubmitProcs != job.end() &&
std::stoi(totalSubmitProcs->second) > 25) {
dprintf(D_VERBOSE,
"Job %d.%d is an array job with more than 25 sub-jobs, not "
"monitoring it\n",
jobId.first, jobId.second);
continue;
}
auto jobBatchNameIt = job.find("JobBatchName");
auto globalJobId = globalJobIdToInt(jobId);