(self)
| 657 | return msg |
| 658 | |
| 659 | def __str__(self): |
| 660 | return ( |
| 661 | self._base_str() |
| 662 | + "\n\n" |
| 663 | + ( |
| 664 | f"All copies of {self.object_ref_hex} have been lost due to node " |
| 665 | "failure. Check cluster logs (`/tmp/ray/session_latest/logs`) for " |
| 666 | "more information about the failure." |
| 667 | ) |
| 668 | ) |
| 669 | |
| 670 | |
| 671 | @PublicAPI |