-
Notifications
You must be signed in to change notification settings - Fork 6.1k
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
[Data] Fix bug where Ray Data incorrectly emits progress bar warning #47680
Conversation
Signed-off-by: Balaji Veeramani <bveeramani@berkeley.edu>
Signed-off-by: Balaji Veeramani <bveeramani@berkeley.edu>
@@ -39,7 +41,7 @@ def wrapped_close(): | |||
bar.close = wrapped_close | |||
|
|||
# Test basic usage | |||
pb = ProgressBar("", total, "", enabled=True) | |||
pb = ProgressBar("", total, "unit", enabled=True) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This test was broken
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks for the fix!
if __name__ == "__main__": | ||
import sys | ||
|
||
sys.exit(pytest.main(["-v", __file__])) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pytest strikes again...
…ay-project#47680) Fixes ray-project#47679 --------- Signed-off-by: Balaji Veeramani <bveeramani@berkeley.edu>
…ay-project#47680) Fixes ray-project#47679 --------- Signed-off-by: Balaji Veeramani <bveeramani@berkeley.edu> Signed-off-by: ujjawal-khare <ujjawal.khare@dream11.com>
Why are these changes needed?
Fixes #47679
Related issue number
Checks
git commit -s
) in this PR.scripts/format.sh
to lint the changes in this PR.method in Tune, I've added it in
doc/source/tune/api/
under thecorresponding
.rst
file.