test: hot restart integration test under bazel.#706
Merged
mattklein123 merged 3 commits intoenvoyproxy:masterfrom Apr 7, 2017
Merged
test: hot restart integration test under bazel.#706mattklein123 merged 3 commits intoenvoyproxy:masterfrom
mattklein123 merged 3 commits intoenvoyproxy:masterfrom
Conversation
This completes the work of Bazelifying everything under test/run_envoy_tests.sh. To run the equivalent tests, just do "bazel test //test/...".
mattklein123
reviewed
Apr 6, 2017
| @@ -0,0 +1,63 @@ | |||
| #!/bin/bash | |||
|
|
|||
| set -e | |||
Member
There was a problem hiding this comment.
Instead of copying this code (not sure what changed vs. the other file), can we potentially just call this script from the other place to avoid duplication/cruft?
Member
Author
There was a problem hiding this comment.
I can, but won't we remove the original script shortly?
Member
There was a problem hiding this comment.
I think it's still going to take a couple of weeks to fully remove cmake. There is still a bunch of stuff to sort out, people to ramp up, etc. If the effort is small to avoid the duplication it seems better to me. If it's complicated for some reason it's fine to just copy it.
mattklein123
approved these changes
Apr 7, 2017
rshriram
pushed a commit
to rshriram/envoy
that referenced
this pull request
Oct 30, 2018
Automatic merge from submit-queue. [DO NOT MERGE] Auto PR to update dependencies of proxy This PR will be merged automatically once checks are successful. ```release-note none ```
jpsim
pushed a commit
that referenced
this pull request
Nov 28, 2022
jpsim
pushed a commit
that referenced
this pull request
Nov 29, 2022
mathetake
added a commit
that referenced
this pull request
Mar 3, 2026
**Commit Message** This adds support for almost-OpenAI-compatible providers where the only difference with OpenAI is that it has different " version prefix". For example, Gemini API [1] uses "/v1beta/openai" version prefix. Another example is that Cohere AI [2] uses "/compatibility/v1", and DeepInfra [3] uses "/v1/openai". [1] https://ai.google.dev/gemini-api/docs/openai [2] https://docs.cohere.com/v2/docs/compatibility-api [3] https://deepinfra.com/docs/inference --------- Signed-off-by: Takeshi Yoneda <t.y.mathetake@gmail.com>
mathetake
added a commit
that referenced
this pull request
Mar 3, 2026
**Commit Message** Previously, the controller didn't fallback to /v1 version for OpenAI schema since #706 which starts utilizing schema.version field. The field was previously non nil hence in many cases, it was set to empty, and that caused the backward incompatibility. This fixes it by defaulting to v1 when the field is set but empty string. **Related Issues/PRs (if applicable)** Follow up on #706 Signed-off-by: Takeshi Yoneda <t.y.mathetake@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This completes the work of Bazelifying everything under test/run_envoy_tests.sh. To run the
equivalent tests, just do "bazel test //test/...".