Mattia Verga

Results 144 comments of Mattia Verga

I saw several tracebacks in the log output, but... possibly, I now realize they're part of the expected test output and those lines leak in the pytest output?

Any chance you had a look at this? I've just tried to remove the patch that disable message publishing in staging Bodhi (just to try out if anything else was...

Yeah, I cannot reproduce it locally too... it seems it only happens on staging (and prod at the time we tried to upgrade base image to F41). To reproduce on...

I see staging is running `bodhi-server-8.3.0^202504140743git8ca72e0-1.fc41` which is the image with the patched out line. Did you manually re-added it?

So, first problem seems that crochet doesn't like running on Python 3.13. After disabling sending messages to fedora-message with a [test commit in staging](https://github.com/fedora-infra/bodhi/commit/bc137450964ea192a55c3b95ccf1736d73767741), I still get other errors about...

The ssl error is about celery not being able to connect to rabbitmq anymore. No idea why. The celery broker config we use both in prod and staging shows some...

So... suddenly today the celery and celery-beat pods of staging Bodhi started to talk to rabbitmq again. I'm not sure if anyone fixed it or what. Anyway, I can now...

Hi, the metadata produced by Bodhi is created and injected by https://github.com/fedora-infra/bodhi/blob/develop/bodhi-server/bodhi/server/metadata.py There are also some bits in https://github.com/fedora-infra/bodhi/blob/develop/bodhi-server/bodhi/server/util.py which involves [checking the generated repodata](https://github.com/fedora-infra/bodhi/blob/c7102081ce264614e282d17b89e25eb2d67e486f/bodhi-server/bodhi/server/util.py#L277) and loading the [createrepo_c settings...

Hello, thanks for the patch and sorry for the late reply. To have the patch approved, can you please sign the DCO? You can click on the "details" link in...

with Python 3.12: ``` >>> def worker(obj): ... pass ... >>> hasattr(property(worker), '__name__') False ``` With Python 3.13: ``` >>> def worker(obj): ... pass ... >>> hasattr(property(worker), '__name__') True >>>...