Claire

Results 1010 comments of Claire

Hi! The auto-deletion feature throttles deletions to avoid putting a strain on the network, and avoids running when the server is busy to avoid putting strain on the particular server....

The first thing to look at would be the size and latency of your sidekiq queues, including the “retry” queue. If those are too high, the automated post deletion feature...

In a Rails console (`RAILS_ENV=production bundle exec rails c`), you can try the following: ```ruby AccountStatusesCleanupPolicy.where(enabled: true).find_each(order: :asc) do |policy| puts "policy #{policy.id}: last_inspected=#{policy.last_inspected}; next_status=#{policy.statuses_to_delete(1, nil, policy.last_inspected).pick(:id)}\n" end ```

It's unlikely that memory limitations would affect the account cleanup process, I think other things would break first. What was the output of the command I wrote above? It should...

It seems like it is not running at all, though I'm not sure why that is.

Although this is not a design decision I agree with, limited federation mode is designed to *not* have anonymous viewing possible, and that was the case before 4.0 too. However,...

Indeed! Does that occur because the request to `/api/v2/instance` fails or something else?

Does that occur with other servers? I wonder if it is a case of things not immediately working because of mastodon.social's replication lag.

This does sound like a replication lag issue indeed! For information, `mastodon.social` is running what is basically a fork of Mastodon that uses the `makara` gem to query either the...

> If the poll expired _after_ retrieving it from the server, i.e. based on `Date.now()` in the client, the link should still be displayed to allow one last refresh. I'm...