Hello Michael,
On Thu, Jun 14, 2012 at 04:35:35PM +1000, Michael Kearey wrote:
> I have been using HAproxy 1.4 for some time, wonderful program, very
> reliable. I have come to need some features that exist in 1.5 dev, and
> built the dev 11 release. In testing the following no longer functions
> as it did in earlier dev releases like 10, 9 etc:
>
> frontend TEST
> ..
I encountered the same problem. As a workaround, first change your name
for frontend and backend to different ones (both TEST in your config)
and instead of
tcp-request connection reject if { src_get_gpc0 gt 0 }
use
tcp-request connection reject if { src_get_gpc0(YOUR_FRONTEND_NAME) gt 0 }
Thomas