Skip to content

Commit

Permalink
Refs #7553 adding warning for resetting preserveEvents
Browse files Browse the repository at this point in the history
(cherry picked from commit fb6a7a7)
  • Loading branch information
Vickie Lynch authored and stuartcampbell committed Aug 12, 2013
1 parent b07acda commit 2c92005
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,8 @@ def PyExec(self):
self._outTypes = self.getProperty("SaveAs").value
samRuns = self.getProperty("RunNumber").value
preserveEvents = self.getProperty("PreserveEvents").value
if HAVE_MPI:
if HAVE_MPI and preserveEvents == True:
self.log().warning("preserveEvents set to False for MPI tasks.")
preserveEvents = False
normbycurrent = self.getProperty("NormalizeByCurrent").value
self._info = None
Expand Down

0 comments on commit 2c92005

Please sign in to comment.