Skip to content

Commit

Permalink
Temporarily disable nMin during the submit step, to avoid setting Slu…
Browse files Browse the repository at this point in the history
…rm's minnodes
  • Loading branch information
rbx committed Sep 12, 2024
1 parent f816aa1 commit 6282a77
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion odc/Controller.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -664,7 +664,9 @@ bool Controller::submitDDSAgents(const CommonParams& common, Session& session, E
requestInfo.m_submissionTag = common.mPartitionID;
requestInfo.m_rms = params.mRMS;
requestInfo.m_instances = params.mNumAgents;
requestInfo.m_minInstances = params.mMinAgents;
// requestInfo.m_minInstances = params.mMinAgents;
requestInfo.m_minInstances = 0;
OLOG(debug, common) << "Ignoring params.mMinAgents for DDS submission to avoid nMin handling temporarily";
requestInfo.m_slots = params.mNumSlots;
requestInfo.m_config = params.mConfigFile;
requestInfo.m_envCfgFilePath = params.mEnvFile;
Expand Down

0 comments on commit 6282a77

Please sign in to comment.