Robin Jarry

Results 17 comments of Robin Jarry

Hi Claudio, I plan to migrate an existing plone cms with a lot of content to a more modern and faster wiki. In the plone instance there are a lot...

@almereyda on the link about subpages you posted, it is specifically mentioned: > Subpages affect all pages in their **directory** and any **subdirectories** that do not have a subpage of...

I am not optimistic about making the same codebase work with both async and bocking code. There are a lot of parts that could be shared (netlink parsing most of...

Hi @svinota, About 3.7+, it looks not really necessary. You could stick to 3.5+ as the `async def` syntax was added here. 3.6 and 3.7 do not add major improvements....

btw, I have inspired from [libnl](https://github.com/thom311/libnl/blob/master/lib/socket.c#L66) for the `connect()` method.

Hi there, here is the cleanup SQL script: https://gist.github.com/rjarry/0b746d8df3c21154a083e07a2be3e6b3 This one is intended for any database backend and is quite complex. I have another one much simpler but it only...

@aj062 this is important that all these statements are executed in a single database transaction to avoid consistency errors. With mysql and postgresql, this can be done without any downtime....

> @rjarry, @tardyp, @p12tic is it possible to integrate these script in buildbot in some manner or in some Janitor? I had completely forgotten about this. I still have a...

Hi folks, for the record, it should be noted that Netlink sockets are a bit different from standard TCP sockets. asyncio code expects that a non-blocking socket will never block....

Hi @cathay4t, I have added an integration test and ran `make check` locally. I tried patching https://github.com/nispor/nispor but couldn't find any netlink reference for `sriov_drivers_autoprobe` so that may not be...