Bid Writing, Major Donors and Volunteering Workshops

2020-12-08 Thread NFP Workshops
NFP WORKSHOPS 18 Blake Street, York YO1 8QG 01133 280988 Affordable Training Courses for Charities, Schools & Public Sector Organisations This email has been sent to haproxy@formilux.org CLICK TO UNSUBSCRIBE FROM LIST Alternatively send a blank e-mail to unsubscr...@nfpmail2001.co.uk

Re: do we want to keep CentOS 6 builds?

2020-12-08 Thread Илья Шипицин
I played with various options. while things work well on my personal centos 6 vm, they still do not work on cirrus https://github.com/chipitsine/haproxy/blob/master/.cirrus.yml#L21-L22 (we cannot use yum-config-manager --add-repo=..., because yum-config-manager is not installed) build:

Re: dynamic ssl certificate updates with changed intermediate

2020-12-08 Thread William Lallemand
On Sat, Dec 05, 2020 at 02:57:03AM +0100, Björn Jacke wrote: > Hi, > > I ran into an issue with haproxy 2.2.6, where I'm not sure if this is > working as intended or not. I have a frontend, which has a ssl cert > configured in a combined pam file, containing the private, public and > intermediate

[PATCH 2/8] DOC/MINOR: spoa/python: Fixing typo in IP related error messages

2020-12-08 Thread Gilchrist Dadaglo
This commit fixes typos in the ps_python_set_var_ip* byte manipulation error messages --- contrib/spoa_server/ps_python.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/spoa_server/ps_python.c b/contrib/spoa_server/ps_python.c index 81bb932..ec97f30 100644 ---

[PATCH 6/8] BUG/MINOR: spoa/python: Cleanup ipaddress objects if initialization fails

2020-12-08 Thread Gilchrist Dadaglo
This change is to ensure objects from the ipaddress module are cleaned up when spoa module initialization fails. In general the interpreter would just crash, but in a code where import is conditional (try/except), then we would keep those objects around --- contrib/spoa_server/ps_python.c | 6

[PATCH 7/8] BUG/MEDIUM: spoa/python: Fixing PyObject_Call positional arguments

2020-12-08 Thread Gilchrist Dadaglo
As per https://docs.python.org/3/c-api/object.html#c.PyObject_Call, positional arguments should be an empty tuple when not used. Previously the code had a dictionary instead of tuple. This commit is to fix it and use tuple to avoid unexpected consequences --- contrib/spoa_server/ps_python.c | 10

[PATCH 4/8] DOC/MINOR: spoa/python: Fixing typos in comments

2020-12-08 Thread Gilchrist Dadaglo
Fixing a missing letter in a comment --- contrib/spoa_server/ps_python.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/spoa_server/ps_python.c b/contrib/spoa_server/ps_python.c index 380d5b3..fbaa414 100644 --- a/contrib/spoa_server/ps_python.c +++

[PATCH 8/8] BUG/MEDIUM: spoa/python: Fixing references to None

2020-12-08 Thread Gilchrist Dadaglo
As per https://docs.python.org/3/c-api/none.html, None has to be treated exactly like other objects for reference counting. So, when we use it, we need to INCREF and when we are done, DECREF --- contrib/spoa_server/ps_python.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff

contrib/spoa/python: A few doc typo and bug fixes

2020-12-08 Thread Gilchrist Dadaglo
Hi Team, Please find here-after a few patches for SPOA python module; mainly memory related and a couple documentation rewrites. I put them under test for a few months now and no additional issue to report so far. Could you please help merge them to master? Any chance they can be backorted

[PATCH 1/8] BUG/MAJOR: spoa/python: Fixing return None

2020-12-08 Thread Gilchrist Dadaglo
As per https://docs.python.org/3/c-api/none.html, None requires to be incremented before being returned to prevent deallocating none --- contrib/spoa_server/ps_python.c | 22 +++--- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/contrib/spoa_server/ps_python.c

[PATCH 3/8] DOC/MINOR: spoa/python: Rephrasing memory related error messages

2020-12-08 Thread Gilchrist Dadaglo
The old message "No more space left available" was redundant with "left available". This commit is to rephrase that sentence and make it more explicit we are talking about memory --- contrib/spoa_server/ps_python.c | 20 ++-- 1 file changed, 10 insertions(+), 10 deletions(-) diff

[PATCH 5/8] BUG/MINOR: spoa/python: Cleanup references for failed Module Addobject operations

2020-12-08 Thread Gilchrist Dadaglo
As per https://docs.python.org/3/c-api/module.html#c.PyModule_AddObject, references are stolen by the function only for success. We must do cleanup manually if there is a failure --- contrib/spoa_server/ps_python.c | 27 ++- 1 file changed, 26 insertions(+), 1 deletion(-)

Re: Crash when using wlc in multithreaded mode with agent checks (1.8.26).

2020-12-08 Thread Christopher Faulet
Le 04/12/2020 à 21:24, Peter Statham a écrit : I might have spoken too soon. The latest release of 1.8 works flawlessly on my debian desktop but still crashes when I attempt the same configuration on a CentOS virtual machine on our VMWare cluster. I'm not sure if this is down to differences in

Re: contrib/spoa/python: A few doc typo and bug fixes

2020-12-08 Thread Christopher Faulet
Le 08/12/2020 à 15:37, Gilchrist Dadaglo a écrit : Hi Team, Please find here-after a few patches for SPOA python module; mainly memory related and a couple documentation rewrites. I put them under test for a few months now and no additional issue to report so far. Could you please help

Re: dynamic ssl certificate updates with changed intermediate

2020-12-08 Thread William Lallemand
On Tue, Dec 08, 2020 at 11:48:41AM +0100, William Lallemand wrote: > On Sat, Dec 05, 2020 at 02:57:03AM +0100, Björn Jacke wrote: > > Hi, > > > > I ran into an issue with haproxy 2.2.6, where I'm not sure if this is > > working as intended or not. I have a frontend, which has a ssl cert > >

Re: contrib/spoa/python: A few doc typo and bug fixes

2020-12-08 Thread Gilchrist DADAGLO
No issue with backporting to 2.0. I just mentioned 2.2 as it's the last. Thanks. Gilchrist On Tue, Dec 8, 2020, 16:01 Christopher Faulet wrote: > Le 08/12/2020 à 15:37, Gilchrist Dadaglo a écrit : > > Hi Team, > > Please find here-after a few patches for SPOA python module; mainly >

Re: dynamic ssl certificate updates with changed intermediate

2020-12-08 Thread Björn Jacke
Hi William, On 08.12.20 15:13, William Lallemand wrote:> I then updated the certificate this way: > > $ echo -e -n "@1 set ssl cert server1.fullchain.pem <<\n$(cat > server2.fullchain.pem)\n\n" | socat - /tmp/master.socket > Transaction created for certificate

stable-bot: Bugfixes waiting for a release 2.1 (12), 2.0 (11)

2020-12-08 Thread stable-bot
Hi, This is a friendly bot that watches fixes pending for the next haproxy-stable release! One such e-mail is sent periodically once patches are waiting in the last maintenance branch, and an ideal release date is computed based on the severity of these fixes and their merge date. Responses