Fix large memory tests. (#632)

* Log the driver ID in hex instead of binary.

* Fix large memory test and add more tests to it.

* Remove tests that are too stressful.
This commit is contained in:
Robert Nishihara
2017-06-02 18:12:56 -07:00
committed by Philipp Moritz
parent 23b0c80967
commit 2694337c0f
2 changed files with 19 additions and 34 deletions
+1 -1
View File
@@ -225,7 +225,7 @@ class Monitor(object):
"""
message = DriverTableMessage.GetRootAsDriverTableMessage(data, 0)
driver_id = message.DriverId()
log.info("Driver {} has been removed.".format(driver_id))
log.info("Driver {} has been removed.".format(binary_to_hex(driver_id)))
# Get a list of the local schedulers.
client_table = ray.global_state.client_table()