Commit c698160
authored
fix: RayProcess not working on Ray 2.54.0 (#214)
# Summary
Fixes a bug that occurs when using Ray `2.54.0`.
# Changes
* The latest version of Ray includes [this
change](ray-project/ray@ac15dba#diff-db449c12dfa112ed32d8fb4105900b8ca82ccdf7135f5a30d8d86e87041e27da)
in the tracing helper code. This requires a `__signature__` attribute on
actor methods. The current mechanism we have to wrap methods on the
`Component.IO` and `Component.Resource` objects returns bound methods,
which do not support `__signature__`. This PR updates the actor wrapper
utilities to mitigate the issue.
* Upgrade Ray in the lockfile.1 parent 829f981 commit c698160
3 files changed
Lines changed: 21 additions & 10 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
27 | 27 | | |
28 | 28 | | |
29 | 29 | | |
30 | | - | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
31 | 36 | | |
32 | 37 | | |
33 | 38 | | |
| |||
38 | 43 | | |
39 | 44 | | |
40 | 45 | | |
41 | | - | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
42 | 52 | | |
43 | 53 | | |
44 | 54 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
98 | 98 | | |
99 | 99 | | |
100 | 100 | | |
| 101 | + | |
101 | 102 | | |
102 | 103 | | |
103 | 104 | | |
| |||
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
0 commit comments