You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In python/ray/autoscaler/autoscaler.py there's an info string that gets logged occasionally.
The line assert used >= 0 is present here. I don't think that assertions should be happening in an informational string.
I can't easily reproduce this but I occasionally have this causing issues (if it blows up during an autoscaler.update call more than a few times, eventually the autoscaler will just bomb itself 'Too many errors, abort').
Can I just remove the assertion?
The text was updated successfully, but these errors were encountered:
In
python/ray/autoscaler/autoscaler.py
there's an info string that gets logged occasionally.The line
assert used >= 0
is present here. I don't think that assertions should be happening in an informational string.I can't easily reproduce this but I occasionally have this causing issues (if it blows up during an autoscaler.update call more than a few times, eventually the autoscaler will just bomb itself 'Too many errors, abort').
Can I just remove the assertion?
The text was updated successfully, but these errors were encountered: