-
-
Notifications
You must be signed in to change notification settings - Fork 10.3k
[CI][Bugfix] Fix failing V1 Test due to missing 'cache_salt' arg #17500
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
[CI][Bugfix] Fix failing V1 Test due to missing 'cache_salt' arg #17500
Conversation
Signed-off-by: mgoin <mgoin64@gmail.com>
👋 Hi! Thank you for contributing to the vLLM project. 💬 Join our developer Slack at https://slack.vllm.ai to discuss your PR in #pr-reviews, coordinate on features in #feat- channels, or join special interest groups in #sig- channels. Just a reminder: PRs would not trigger full CI run by default. Instead, it would only run Once the PR is approved and ready to go, your PR reviewer(s) can run CI to test the changes comprehensively before merging. To run CI, PR reviewers can either: Add 🚀 |
@dr75 I'm curious if there is a reason for making cache_salt required rather than defaulting it to None? |
As it is security relevant I wanted to avoid an insecure default, reducing the potential for a bug that causes a vulnerability. |
What should I have done differently to avoid the broken test? Or was that a merge issue as I was actually looking for places where it is needed. |
…m-project#17500) Signed-off-by: mgoin <mgoin64@gmail.com>
…m-project#17500) Signed-off-by: mgoin <mgoin64@gmail.com> Signed-off-by: Mu Huai <tianbowen.tbw@antgroup.com>
…m-project#17500) Signed-off-by: mgoin <mgoin64@gmail.com> Signed-off-by: Yuqi Zhang <yuqizhang@google.com>
…m-project#17500) Signed-off-by: mgoin <mgoin64@gmail.com> Signed-off-by: minpeter <kali2005611@gmail.com>
The CI for V1 Test is broken (https://buildkite.com/vllm/ci/builds/19044/steps?jid=01968804-ba26-4ab6-8efd-afd36c5ed73a#01968804-ba26-4ab6-8efd-afd36c5ed73a/209-2172) due to a forgotten EngineCoreRequest construction without required arg 'cache_salt'. Introduced by #17045