Mac Chaffee

Results 77 comments of Mac Chaffee

Hello, sorry to bump an old thread, but I was cleaning out my old repos and found this PR. Seems ready to merge now! :)

If anyone's using NetApp ONTAP volumes, the variable that controls the size of the directory index is `maxdirsize`. If you create a lot of files like Loki does, you can...

Still a work a progress. It's turning out to be a bigger lift than expected, but I think it'll be worth it

I hit a wall with implementing this issue, mostly due to my own weak Golang skills but also due to other issues in this repo that might make sense to...

The issue appears to be the conditional which is mentioned in the readme: https://github.com/haproxy/spoa-modsecurity/blob/3c895f3e7dd291dba19d57ba054b277e6fb80ca4/README#L97 When a timeout is hit, `txn.modsec.code` stays uninitialized as `-1`, which mean the request is NOT...

It seems that the return code from modsecurity is a signed integer: https://github.com/haproxy/spoa-modsecurity/blob/3c895f3e7dd291dba19d57ba054b277e6fb80ca4/spoa.c#L93 But when encoded via SPOP, it's treated as a uint64_t: https://github.com/haproxy/spoa-modsecurity/blob/3c895f3e7dd291dba19d57ba054b277e6fb80ca4/include/haproxy/intops.h#L399 This seems to be related to...

> It now always does the check. Music to my ears 😎

Experimented with this today: * The frontend code checks `/api/app/about` to get the value of the default group. * The backend code makes a query for a group where `name=settings.DEFAULT_GROUP`...

I'm thinking the issue may be related to the decision not to use server-side cursors here: https://github.com/pgadmin-org/pgadmin4/issues/947 My understanding is that both sync and async queries load the whole result...

Also wanted to add: while testing I was noticing memory leaking. I'd run a large query then a small query, but the RAM usage of the large query would stick...