mirror of
https://github.com/LemmyNet/lemmy-docs.git
synced 2024-11-21 11:51:11 +00:00
prettier
This commit is contained in:
parent
12d8290e33
commit
bddf25c564
1 changed files with 2 additions and 0 deletions
|
@ -81,6 +81,7 @@ If federation sending to a specific instance has been failing consistently, Lemm
|
||||||
- Stop Lemmy, or specifically the container for outgoing federation `docker compose stop lemmy`
|
- Stop Lemmy, or specifically the container for outgoing federation `docker compose stop lemmy`
|
||||||
- Enter SQL command line: `sudo docker compose exec postgres psql -U lemmy`
|
- Enter SQL command line: `sudo docker compose exec postgres psql -U lemmy`
|
||||||
- Reset failure count via SQL:
|
- Reset failure count via SQL:
|
||||||
|
|
||||||
```sql
|
```sql
|
||||||
update federation_queue_state
|
update federation_queue_state
|
||||||
set fail_count = 0
|
set fail_count = 0
|
||||||
|
@ -88,6 +89,7 @@ from instance
|
||||||
where instance.id = federation_queue_state.instance_id
|
where instance.id = federation_queue_state.instance_id
|
||||||
and instance.domain = 'lemm.ee';
|
and instance.domain = 'lemm.ee';
|
||||||
```
|
```
|
||||||
|
|
||||||
- Exit SQL command line with `\q`, then restart Lemmy: `docker compose start lemmy`
|
- Exit SQL command line with `\q`, then restart Lemmy: `docker compose start lemmy`
|
||||||
|
|
||||||
### Other instances don't receive actions reliably
|
### Other instances don't receive actions reliably
|
||||||
|
|
Loading…
Reference in a new issue