Skip to content
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

version bug fix in submodules for gateway #220

Merged
merged 58 commits into from
Jul 25, 2024
Merged
Changes from 1 commit
Commits
Show all changes
58 commits
Select commit Hold shift + click to select a range
6718de0
add log debug headers
anuvedverma Jul 1, 2024
28bde1d
use error log level
anuvedverma Jul 1, 2024
2773cf3
add logging for error response header
anuvedverma Jul 1, 2024
8bc1af9
other config changes
riteshvaryani Jul 2, 2024
c4e3200
config testing
riteshvaryani Jul 2, 2024
d1ad10a
test
riteshvaryani Jul 2, 2024
365e481
add more changes
riteshvaryani Jul 2, 2024
57e0995
more config changes
riteshvaryani Jul 2, 2024
3eb9da8
add logging for error request/response header size
anuvedverma Jul 2, 2024
7bd21d9
add logging for success at 1%
anuvedverma Jul 2, 2024
e781b3f
remove full header debug from success
anuvedverma Jul 2, 2024
fba8a40
more updates
riteshvaryani Jul 2, 2024
603ff4d
fix
anuvedverma Jul 2, 2024
c17fbf7
fix style
anuvedverma Jul 2, 2024
ccde25e
add check for header not just content size
anuvedverma Jul 2, 2024
a3eb319
Update ProxyHandler.java
riteshvaryani Jul 2, 2024
8f72c71
dropwizard update
riteshvaryani Jul 2, 2024
68d4cf9
Merge branch 'sev-16337-add-header-logging' of github.com:lyft/presto…
riteshvaryani Jul 2, 2024
f488a04
compile fix
riteshvaryani Jul 2, 2024
60db65e
more fixes
riteshvaryani Jul 2, 2024
7092cdb
lint fixes
riteshvaryani Jul 2, 2024
fd6b9f6
fix header logging
anuvedverma Jul 2, 2024
765f61d
Update ProxyHandler.java
riteshvaryani Jul 2, 2024
b145513
Update ProxyHandler.java
riteshvaryani Jul 2, 2024
1ce2104
add logging in preconnection hook
anuvedverma Jul 2, 2024
80ac96c
checkstyle fixes
anuvedverma Jul 2, 2024
5911d0b
adding error counters
jchoi614 Jul 2, 2024
4d1c079
forgot to uncomment
jchoi614 Jul 2, 2024
29613c4
fix checkstyle
jchoi614 Jul 2, 2024
d9cfe8d
update dropwizard ver
jchoi614 Jul 2, 2024
0fee702
updating dropwizard dependency
jchoi614 Jul 2, 2024
94ed9d8
update
riteshvaryani Jul 3, 2024
2cb6d66
pom changes
riteshvaryani Jul 3, 2024
1c25d75
try request logging
riteshvaryani Jul 3, 2024
76f038b
add handler
riteshvaryani Jul 3, 2024
30a065b
changes
riteshvaryani Jul 9, 2024
341c07a
changes
riteshvaryani Jul 9, 2024
32145ed
Update gateway-ha-config.yml
riteshvaryani Jul 9, 2024
2bb4d5c
Update ProxyServer.java
riteshvaryani Jul 9, 2024
25373fc
Update ProxyServer.java
riteshvaryani Jul 9, 2024
4075810
Update ProxyServer.java
riteshvaryani Jul 9, 2024
87c64f9
Update ProxyServletImpl.java
riteshvaryani Jul 9, 2024
e11ede0
add configs
riteshvaryani Jul 10, 2024
36fe69b
more configs
riteshvaryani Jul 10, 2024
0f4ad3c
Revert "add configs"
riteshvaryani Jul 10, 2024
e708437
Update ProxyServer.java
riteshvaryani Jul 11, 2024
ee46184
Update ProxyHandler.java
riteshvaryani Jul 25, 2024
2bde674
Update ProxyHandler.java
riteshvaryani Jul 25, 2024
6833beb
Update ProxyHandler.java
riteshvaryani Jul 25, 2024
11c58cd
Update ProxyServer.java
riteshvaryani Jul 25, 2024
69cbd7f
final changes
riteshvaryani Jul 25, 2024
ff0976c
Update pom.xml
riteshvaryani Jul 25, 2024
893eb2e
bug fix
riteshvaryani Jul 25, 2024
e47fd61
updates
riteshvaryani Jul 25, 2024
79be7f0
version fix
riteshvaryani Jul 25, 2024
7420849
Merge branch 'master' into isolatechanges
riteshvaryani Jul 25, 2024
4b1c0a7
Update pom.xml
riteshvaryani Jul 25, 2024
cb485df
Update pom.xml
riteshvaryani Jul 25, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
add log debug headers
  • Loading branch information
anuvedverma committed Jul 1, 2024
commit 6718de08c261c037e4c711e4edaefc9da6479aec
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ protected void postConnectionHook(
log.error("Exception occurred while processing request URL: {} , request URI {} ,"
+ " servlet path {} , toString {}", request.getRequestURL(),
request.getRequestURI(), request.getServletPath(), request.toString(), var9);
debugLogHeaders(request);
callback.failed(var9);
}
}
Expand Down
Loading