rathann

Results 144 comments of rathann

> Thanks for the report, yes the extraction is pretty basic. Why is the bootmgfw.efi file be in that path in that image? I have no idea. This is an...

FWIW, the YouTube widget does not work, either. Clicking the displayed URL opens Firefox with https://scalar.vector.im/api/widgets/youtube.html?url=https%253A%252F%252Fwww.youtube.com%252Flive%252... (trimmed) and an error message saying "API Error (403): Missing access token".

Just got the same filed downstream in Fedora: https://bugzilla.redhat.com/show_bug.cgi?id=2326925 . Our Python maintainers caught this, too.

Python 3.13 [`ByteString`](https://docs.python.org/3.13/library/typing.html#typing.ByteString) documentation suggests using [`collections.abc.Buffer`](https://docs.python.org/3.13/library/collections.abc.html#collections.abc.Buffer) instead.

```diff diff -up zstandard-0.23.0/zstandard/__init__.py.py314 zstandard-0.23.0/zstandard/__init__.py --- zstandard-0.23.0/zstandard/__init__.py.py314 2024-07-14 23:58:50.000000000 +0200 +++ zstandard-0.23.0/zstandard/__init__.py 2025-03-28 17:16:47.339256930 +0100 @@ -18,7 +18,10 @@ import io import os import platform -from typing import ByteString +try:...

After applying a1ce45cf5dc2253a1f9c0590fe111ebd8d1613c0 I'm getting these test failures: ``` == Tests on clang with flags used in RPM package build == + '[' include = include ']' + result=ok +...

What do you think about including a systemd unit? Currently, I'm using this: ``` [Unit] Description=Network throughput testing daemon Documentation=man:iperf3(1) https://software.es.net/iperf/ After=network.target [Service] EnvironmentFile=-/etc/sysconfig/iperf3 ExecStart=/usr/bin/iperf3 --server $IPERF3_OPTIONS SuccessExitStatus=1 User=iperf3 [Install]...

So, the systemd unit is there at [contrib/iperf3.service](https://github.com/esnet/iperf/blob/master/contrib/iperf3.service), great! It could use a few improvements like admin-settable options (see [my comment above](https://github.com/esnet/iperf/issues/1009#issuecomment-646354475)), but it's good enough. However, iperf3 still has:...

> [@rathann](https://github.com/rathann), per [this comment](https://github.com/esnet/iperf/issues/1009#issuecomment-2226046826), suggest when iperf3 gets a signal it should `exit(0)` on `SIGTERM`. Do you think there are other termination signals that should cause exit code 0?...