(obj, method, exc)
| 15 | |
| 16 | |
| 17 | def _warn_msg(obj, method, exc): |
| 18 | return ( |
| 19 | f"{method}({str(obj)}) failed." |
| 20 | "\nTo check which non-serializable variables are captured " |
| 21 | "in scope, re-run the ray script with 'RAY_PICKLE_VERBOSE_DEBUG=1'.") |
| 22 | |
| 23 | |
| 24 | def dump_debug(obj, *args, **kwargs): |
no outgoing calls
no test coverage detected
searching dependent graphs…