Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[core] Add a warning when returning an object w/ num_returns=0 #51789

Open
edoakes opened this issue Mar 28, 2025 · 3 comments · May be fixed by #51827
Open

[core] Add a warning when returning an object w/ num_returns=0 #51789

edoakes opened this issue Mar 28, 2025 · 3 comments · May be fixed by #51827
Labels
core Issues that should be addressed in Ray Core good-first-issue Great starter issue for someone just starting to contribute to Ray P2 Important issue, but not time-critical usability

Comments

@edoakes
Copy link
Collaborator

edoakes commented Mar 28, 2025

What happened + What you expected to happen

If you set num_returns=0, it is likely a mistake if you return a non-None object. We should print a warning message in this case to avoid confusion.

Here is likely where the warning should go (check outputs):

if num_returns == 0:

Versions / Dependencies

N/A

Reproduction script

>>> import ray
>>> @ray.remote(num_returns=0)
... def f():
...     print('hi')
...     return 123
...
>>> f.remote()
(f pid=44332) hi

Issue Severity

Low: It annoys or frustrates me.

@edoakes edoakes added core Issues that should be addressed in Ray Core good-first-issue Great starter issue for someone just starting to contribute to Ray P2 Important issue, but not time-critical usability labels Mar 28, 2025
@edoakes
Copy link
Collaborator Author

edoakes commented Mar 28, 2025

Note we can't make this case raise an exception as it would be a breaking change.

@edoakes
Copy link
Collaborator Author

edoakes commented Mar 28, 2025

Let's print a warning like:

Task '(name)' has num_returns=0 but returned a non-None value '(repr of object)'. The return value will be ignored.

@justinrmiller
Copy link
Contributor

I'd like to work on this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
core Issues that should be addressed in Ray Core good-first-issue Great starter issue for someone just starting to contribute to Ray P2 Important issue, but not time-critical usability
Projects
None yet
2 participants