-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
chore: upgrade openresty version to v1.27.11 #11936
base: master
Are you sure you want to change the base?
Changes from all commits
f116ef3
e6c382d
7020410
a3dc164
0454f25
ec13a45
157d556
a283926
5a68c47
3f85daa
7eca3d6
b0c9d55
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,4 +17,4 @@ | |
|
||
APISIX_PACKAGE_NAME=apisix | ||
|
||
APISIX_RUNTIME=1.2.1 | ||
APISIX_RUNTIME=1.3.0 |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -169,7 +169,7 @@ routes: | |
GET /hello | ||
--- error_code: 502 | ||
--- error_log | ||
upstream: "grpcs://127.0.0.1:443" | ||
connect() failed (111: Connection refused) while connecting to upstream | ||
|
@@ -188,7 +188,7 @@ routes: | |
GET /hello | ||
--- error_code: 502 | ||
--- error_log | ||
upstream: "grpc://127.0.0.1:80" | ||
connect() failed (111: Connection refused) while connecting to upstream | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this change is needed as grpc proxy is done under subrequest, and the apisix custom logger (in apisix-nginx-module) overrides the original log handler of nginx and stores the reference to the original log handler in ctx. but |
||
|
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.
the verify client API has changed and it expects 4 parameters now, the 3rd parameter is
trusted_certs
, we can implement the support for trusted certs later.