Forbid positional arguments when constructing ray actors - #1986
Open
fzyzcjy wants to merge 1 commit into
Open
Conversation
Contributor
|
Caution The consumer version of Gemini Code Assist on GitHub has been sunset. All code review activity has officially ceased. |
fzyzcjy
force-pushed
the
tom/refactor-miles/op13-32
branch
from
August 3, 2026 23:43
50b22eb to
7d6cb32
Compare
fzyzcjy
requested review from
Shi-Dong,
Zhichenzzz and
guapisolo
as code owners
August 3, 2026 23:43
fzyzcjy
force-pushed
the
tom/refactor-miles/op13-29
branch
2 times, most recently
from
August 4, 2026 00:38
2078843 to
e6d5924
Compare
fzyzcjy
force-pushed
the
tom/refactor-miles/op13-32
branch
from
August 4, 2026 00:38
7d6cb32 to
0b0b754
Compare
fzyzcjy
force-pushed
the
tom/refactor-miles/op13-29
branch
from
August 4, 2026 06:54
e6d5924 to
c387a20
Compare
fzyzcjy
requested review from
Rockdu,
jybsuper and
yushengsu-thu
as code owners
August 4, 2026 06:54
fzyzcjy
force-pushed
the
tom/refactor-miles/op13-32
branch
from
August 4, 2026 06:54
0b0b754 to
2b34861
Compare
fzyzcjy
force-pushed
the
tom/refactor-miles/op13-29
branch
from
August 4, 2026 07:25
c387a20 to
ff23609
Compare
fzyzcjy
force-pushed
the
tom/refactor-miles/op13-32
branch
from
August 4, 2026 07:25
2b34861 to
dbde692
Compare
fzyzcjy
force-pushed
the
tom/refactor-miles/op13-29
branch
from
August 4, 2026 07:32
ff23609 to
3bce5cf
Compare
fzyzcjy
force-pushed
the
tom/refactor-miles/op13-32
branch
2 times, most recently
from
August 6, 2026 03:48
7e77aef to
3a78611
Compare
fzyzcjy
force-pushed
the
tom/refactor-miles/op13-29
branch
2 times, most recently
from
August 6, 2026 07:03
29878b5 to
81e567f
Compare
fzyzcjy
force-pushed
the
tom/refactor-miles/op13-32
branch
from
August 6, 2026 07:03
3a78611 to
1bea023
Compare
fzyzcjy
force-pushed
the
tom/refactor-miles/op13-29
branch
from
August 9, 2026 23:32
81e567f to
de73dc2
Compare
fzyzcjy
force-pushed
the
tom/refactor-miles/op13-32
branch
from
August 9, 2026 23:32
1bea023 to
a8e7ad4
Compare
fzyzcjy
force-pushed
the
tom/refactor-miles/op13-29
branch
from
August 10, 2026 06:03
de73dc2 to
49769ef
Compare
fzyzcjy
force-pushed
the
tom/refactor-miles/op13-32
branch
2 times, most recently
from
August 10, 2026 16:06
7daaae9 to
91d70ba
Compare
fzyzcjy
force-pushed
the
tom/refactor-miles/op13-29
branch
from
August 10, 2026 16:34
018f10e to
b06d74b
Compare
fzyzcjy
force-pushed
the
tom/refactor-miles/op13-32
branch
6 times, most recently
from
August 12, 2026 23:56
f3f12ec to
9f86ef5
Compare
fzyzcjy
force-pushed
the
tom/refactor-miles/op13-29
branch
from
August 13, 2026 01:13
7416806 to
da1f506
Compare
fzyzcjy
force-pushed
the
tom/refactor-miles/op13-32
branch
from
August 13, 2026 01:13
9f86ef5 to
ba8f4c1
Compare
fzyzcjy
force-pushed
the
tom/refactor-miles/op13-29
branch
from
August 13, 2026 03:25
da1f506 to
d21f28c
Compare
fzyzcjy
force-pushed
the
tom/refactor-miles/op13-32
branch
from
August 13, 2026 03:25
ba8f4c1 to
5584b36
Compare
fzyzcjy
force-pushed
the
tom/refactor-miles/op13-29
branch
from
August 13, 2026 06:00
d21f28c to
7fc17f9
Compare
fzyzcjy
force-pushed
the
tom/refactor-miles/op13-32
branch
2 times, most recently
from
August 13, 2026 06:39
7733925 to
1847829
Compare
fzyzcjy
force-pushed
the
tom/refactor-miles/op13-29
branch
from
August 13, 2026 06:39
7fc17f9 to
0d42baa
Compare
Every actor constructor call site now passes keyword arguments only, and the constructors enforce it with keyword-only signatures. A launch layer that builds workers from a spec can then describe any constructor as a plain kwargs dict, with no positional-argument channel to carry.
fzyzcjy
force-pushed
the
tom/refactor-miles/op13-29
branch
from
August 14, 2026 04:45
0d42baa to
f9a8ed4
Compare
fzyzcjy
force-pushed
the
tom/refactor-miles/op13-32
branch
from
August 14, 2026 04:46
1847829 to
70e4a55
Compare
Collaborator
|
P1 — unresolved at safe checkpoint #2176 and current tip #2649. This PR establishes a kwargs-only Ray actor-constructor contract, but two core actors still keep a positional channel: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Part of #1837