From 230ecf386c061753640921b62d252b2bd7b5f099 Mon Sep 17 00:00:00 2001 From: Joachim Meyer Date: Wed, 6 Aug 2025 12:56:53 +0200 Subject: [PATCH] Don't handle the ignoring of large jobs in Code, use submit transforms to NoMonitoring. --- src/htcondor_cc_sync_plugin.cpp | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/htcondor_cc_sync_plugin.cpp b/src/htcondor_cc_sync_plugin.cpp index 92f9012..bb8a12a 100644 --- a/src/htcondor_cc_sync_plugin.cpp +++ b/src/htcondor_cc_sync_plugin.cpp @@ -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);