Skip to content

Commit

Permalink
do not print exception when verifying h2o shutdown (exception means s…
Browse files Browse the repository at this point in the history
…uccess, but looks bad, just pass instead)
  • Loading branch information
spennihana committed Oct 10, 2014
1 parent 49f9e6e commit 834b403
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions h2o-perf/bench/py/h2oPerf/H2O.py
Original file line number Diff line number Diff line change
Expand Up @@ -446,8 +446,7 @@ def stop_remote(self):
try:
requests.get("http://" + self.ip + ":" + str(self.port) + "/Shutdown.html", timeout=1)
except Exception, e:
print "Got Exception trying to shutdown H2O:"
print e
# print "Got Exception trying to shutdown H2O:"
pass
print "Successfully shutdown h2o!"
self.pid = -1
Expand Down

0 comments on commit 834b403

Please sign in to comment.