You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 9, 2022. It is now read-only.
(Just noting for the record, not necessarily requesting any changes.)
I was recently testing roxy with an AWS cluster set up using the ELB (elastic load balancer). I ran into a couple of issues:
Roxy sends a version name of "XDBC/1.0" in the HTTP request line. This causes the load balancer to reject the request with 400: Bad request. Changing this (in write_header in xcc.rb) to "HTTP/1.1" fixes the problem.
"deploy modules" with the batch setting on (the default), results in 504: Gateway timeout. The fix is to use "deploy modules --batch=false" so that each module is committed individually.
The text was updated successfully, but these errors were encountered:
After further testing, it seems that changing the version string to HTTP/1.1 is a bad idea for actual XDBC traffic. With this change, each module copied by "deploy modules" ends up with the file size as the first line of the file followed by the actual code.
(Just noting for the record, not necessarily requesting any changes.)
I was recently testing roxy with an AWS cluster set up using the ELB (elastic load balancer). I ran into a couple of issues:
The text was updated successfully, but these errors were encountered: