Skip to content

Commit

Permalink
Merge pull request #8 from edelmann/master
Browse files Browse the repository at this point in the history
SchedulerARC: Don't add non-existing clusters to the list of found clusters.
  • Loading branch information
belforte committed Apr 10, 2014
2 parents c01109c + 582f2ff commit d581a77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/python/ProdCommon/BossLite/Scheduler/SchedulerARC.py
Original file line number Diff line number Diff line change
Expand Up @@ -606,7 +606,7 @@ def getClusters(self):
elif not c["cluster"] and line.find("Name:") >= 0:
c["cluster"] = line.split(': ')[1]

clusters.append(c)
if c["cluster"]: clusters.append(c)
return clusters


Expand Down

0 comments on commit d581a77

Please sign in to comment.