Olivier Doucet

Results 44 comments of Olivier Doucet

I've repaired legacy tests. I should add new tests to make sure "bereaving" mode is working as expected, but I failed to understand correctly how zombies are tested currently and...

current MR failed to compile with : ``` dumb-init.c: In function 'handle_signal': dumb-init.c:170:21: error: 'exit_status' may be used uninitialized in this function [-Werror=maybe-uninitialized] exit(exit_status); ^ cc1: all warnings being treated...

I'm bumping this thread as I face the same issue. I was able to rewrite the transaction name in getTracesSampler() through `$context->getTransactionContext()->setName()` but it seems to be ignored (the unmodified...

FYI I was able to rewrite transaction name by listening to `kernel.response` and rewrite it with : ``` class SentryListener { protected RouterInterface $router; public function __construct(RouterInterface $router) { $this->router...

it is now ready to be merged :) Can it be done ? This is a very awaited feature !

Hello, Thank you for the quick feedback ! It appears ipcalc is unable to compute CIDR : ``` $ echo "inetnum: 104.154.0.0 - 104.155.255.255" | awk '{print $2"-"$4}' | xargs...

Moreover, `-r` option seems unsuitable with what my ipcalc version does : ``` ipcalc --help Usage: ipcalc [OPTION...] -c, --check Validate IP address -r, --random-private=PREFIX Generate a random private IP...

Upgrading to Rocky Linux 9 that gives package `ipcalc-1.0.0-5.el9.x86_64` adds a new feature : ``` -d, --deagrregate=IP1-IP2 Deaggregate the provided address range ``` Editing "asn" program and using `ipcalc -d`...

We may issue an "ipcalc --help" at the beginning of the program to check which flag to use (-d or -r). I may provide a pull request if you are...