Subject: | perlbal.conf order matters more than expected |
Thanks to the helpful dumpconfig command I could discover that some of
my my config settings in my perlbal.conf file were being ignored.
This works:
create service pb1
set role = reverse_proxy
set idle_timeout = 120
A grep on idle_timeout shows me:
SET idle_timeout = 120
BUT this doesn't work:
create service pb1
set idle_timeout = 120
set role = reverse_proxy
A grep on idle_timeout with this config doesn't yield anything because
idle_timeout has been set back to the default (30) when the line 'set
role' was reached.
I'm not trying to provide a fix, I hope the fix is obvious for you. Let
me know if you would prefer a patch.
Thanks,