MCPcopy Index your code
hub / github.com/ray-project/ray / __str__

Method __str__

python/ray/exceptions.py:590–599  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

588 """
589
590 def __str__(self):
591 # TODO(scv119): expose more disk usage information and link to a doc.
592 return super(OutOfDiskError, self).__str__() + (
593 "\n"
594 "The object cannot be created because the local object store"
595 " is full and the local disk's utilization is over capacity"
596 " (95% by default)."
597 "Tip: Use `df` on this node to check disk usage and "
598 "`ray memory` to check object store memory usage."
599 )
600
601
602@PublicAPI

Callers

nothing calls this directly

Calls 1

__str__Method · 0.45

Tested by

no test coverage detected