

Hi there, so we fixed this issue in this PR on Febuary 24th, 1.9.1 is actually from Febuary 9th. So as soon as @jwr1@kbin.earth upgrades this is fixed null
The reason we do not use the url property: according to the Activity Vocabulary which is part of the standard, this property
Identifies one or more links to representations of the object
Which the links in mbin or lemmy just don’t fit. Multiple other projects would handle this property as the “original url” (including Mastodon).

























that was actually mostly a pg-bouncer. I have no idea why it is happening though…
I just have a script that checks for this line and restarts php-fpm if necessary:
#!/bin/bash lineCount=`tail -n 1 /var/log/postgresql/pgbouncer.log | grep query_wait_timeout | wc -l` if [ $lineCount -gt 0 ]; then systemctl restart php8.3-fpm.service logger "Restarting php because pgbouncer has query_wait_timeout messages" else echo "No" fi