-
Notifications
You must be signed in to change notification settings - Fork 5.8k
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
[autoscaler] fix too many values to unpack (expected 2) bug #36231
Conversation
self.autoscaler.all_node_types, | ||
) | ||
except Exception: | ||
logger.error("Error emitting metrics") |
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.
use logger.exception
? or print the stack trace?
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.
I don't think we want to drop the exception silently.
@scv119 , could you also get a cherrypick PR for branch |
The 2.5.1 branch is up, please also create a cherry pick PR for that one. |
…ect#36231) autoscaler_summary.pending_launches is a dict thus causing the iteration fails with too many values to unpack issue.
Signed-off-by: Lonnie Liu <[email protected]>
…36482) Signed-off-by: Lonnie Liu <[email protected]>
…ect#36231) autoscaler_summary.pending_launches is a dict thus causing the iteration fails with too many values to unpack issue. Signed-off-by: e428265 <[email protected]>
autoscaler_summary.pending_launches is a dict thus causing the iteration fails with
too many values to unpack
issue.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.