Akkoma never checks to see if unreachable instances return #277
Labels
No labels
approved, awaiting change
bug
configuration
documentation
duplicate
enhancement
extremely low priority
feature request
Fix it yourself
help wanted
invalid
mastodon_api
needs docs
needs tests
not a bug
planned
pleroma_api
privacy
question
static_fe
triage
wontfix
No milestone
No project
No assignees
2 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: AkkomaGang/akkoma#277
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
In the situation that a federated instance is unreachable for (by default) 7 days, it is added to the unreachable instances list (found by the psql query
SELECT i0."host", i0."unreachable_since" FROM "instances" AS i0;
). Once added to this list, akkoma never again checks to see if it has returned. This results in instances entering a graveyard even if they return from prelonged downtime. Ideally, once every month or two, akkoma should attempt to "ping" that instance again to discover if it is still down or if it has returned.There could also be a way to view these "dead" instances in the admin view, and remove them from the list manually.
should be fixed by
3e0a5851e5