Skip to content

Commit

Permalink
review change
Browse files Browse the repository at this point in the history
Signed-off-by: Jake Smith <[email protected]>
  • Loading branch information
jakesmith committed Nov 5, 2024
1 parent 6a3a023 commit d238085
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions dali/ft/filecopy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1597,13 +1597,12 @@ void FileSprayer::commonUpSlaves()

// noCommon is defaulted to on for non-containerized (revisit!)
bool noCommon = options->getPropBool(ANnocommon, !isContainerized());
if (isContainerized() && noCommon)
if (noCommon)
{
if (!isContainerized())
return;
IWARNLOG("Ignoring noCommon option in containerized mode");
noCommon = false;
}
else if (noCommon)
return;

//First work out which are the same slaves, and then map the partition.
//Previously it was n^2 in partition, which is fine until you spray 100K files.
Expand Down

0 comments on commit d238085

Please sign in to comment.