freebsd ci is broken

2020-01-13 Thread Илья Шипицин
Hello, since https://github.com/haproxy/haproxy/commit/08fa16e397ffb1c6511b98ade2a3bfff9435e521 freebsd CI is red: https://cirrus-ci.com/task/5960933184897024 I'd say "it is something with CI itself", when I run the same tests locally on freebsd, it is green. PiBa ? thanks, Ilya Shipitcin

Re: [PATCH v2 0/3] MINOR: lua: Add lua-prepend-path configuration option

2020-01-13 Thread Willy Tarreau
On Sun, Jan 12, 2020 at 01:55:38PM +0100, Tim Duesterhus wrote: > Willy, > Thierry, > Vincent, > > I've just prepared a new version of my proposal with the following > differences: > > 1. I adjusted the documentation as suggested by Willy. > 2. I added support for `package.cpath` as suggested

Re: hckrnews.com:We can increase the number of visitors

2020-01-13 Thread Suzanne Hill
Hello *hckrnews.com ,* My name is *Suzanne Hill*, and I'm an SEO Specialist. Hope you are doing well. The technical team has prepared a *“Site Analysis Report”* for your website. If you are *"Interested"* I can show you the report. I am eager to discuss the advantages that

Re: [PATCH v2] CLEANUP: ssl: remove opendir call in ssl_sock_load_cert

2020-01-13 Thread William Lallemand
On Mon, Jan 13, 2020 at 05:52:49PM +0100, William Dauchy wrote: > Since commit 3180f7b55434 ("MINOR: ssl: load certificates in > alphabetical order"), `readdir` was replaced by `scandir`. We can indeed > replace it with a check on the previous `stat` call. > > This micro cleanup can be a good

Re: Lua: forcing garbage collector after socket i/o

2020-01-13 Thread Sadasiva Gujjarlapudi
Sounds good to me. Thank you so much once again. Sada. On Sat, Jan 11, 2020 at 10:24 AM Thierry Fournier wrote: > > > > > On 11 Jan 2020, at 07:48, Willy Tarreau wrote: > > > > On Fri, Jan 10, 2020 at 03:17:59PM -0800, Sadasiva Gujjarlapudi wrote: > >> After applying the patch and socket

Re: [PATCH] CLEANUP: ssl: remove opendir call in ssl_sock_load_cert

2020-01-13 Thread William Dauchy
Hi William L., Thanks for your answer. On Mon, Jan 13, 2020 at 04:00:53PM +0100, William Lallemand wrote: > I understand that you were trying to remove opendir, which is good idea. > However, I find it kind of confusing: if ssl_sock_load_ckchs() returns an > error, this error will be added to

[PATCH v2] CLEANUP: ssl: remove opendir call in ssl_sock_load_cert

2020-01-13 Thread William Dauchy
Since commit 3180f7b55434 ("MINOR: ssl: load certificates in alphabetical order"), `readdir` was replaced by `scandir`. We can indeed replace it with a check on the previous `stat` call. This micro cleanup can be a good benefit when you have hundreds of bind lines which open TLS certificates

Re: [PATCH] CLEANUP: ssl: remove opendir call in ssl_sock_load_cert

2020-01-13 Thread William Lallemand
Hello, I understand that you were trying to remove opendir, which is good idea. However, I find it kind of confusing: if ssl_sock_load_ckchs() returns an error, this error will be added to the "unable to scan directory" message, and at this point it is not trying to scan a directory anymore.