(self)
| 571 | """ |
| 572 | |
| 573 | def __str__(self): |
| 574 | return super(ObjectStoreFullError, self).__str__() + ( |
| 575 | "\n" |
| 576 | "The local object store is full of objects that are still in " |
| 577 | "scope and cannot be evicted. Tip: Use the `ray memory` command " |
| 578 | "to list active objects in the cluster." |
| 579 | ) |
| 580 | |
| 581 | |
| 582 | @PublicAPI |