-
Notifications
You must be signed in to change notification settings - Fork 246
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v2.6.1 bugfix: lb proxy protocol parser error (#668)
* update lb proxy protocol * Add e2e tests for lyrebird proxy protocol parser * e2etest fix: wait extra mock start
- Loading branch information
Showing
5 changed files
with
74 additions
and
22 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,13 @@ | ||
# lyrebird e2e test | ||
|
||
## 测试 lyrebird(POST)request body | ||
|
||
```bash | ||
nohup python3 serve.py > /dev/null 2>&1 & | ||
nohup lyrebird -b > /dev/null 2>&1 & | ||
pip install -e .[dev] | ||
# If you are using zsh you need to escape square brackets or use quotes: | ||
# pip install -e .\[extra\] | ||
# or | ||
# pip install -e ".[extra]" | ||
cd e2e_tests | ||
python -m pytest . | ||
``` |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
IVERSION = (2, 6, 0) | ||
IVERSION = (2, 6, 1) | ||
VERSION = ".".join(str(i) for i in IVERSION) | ||
LYREBIRD = "Lyrebird " + VERSION |