diff options
-rw-r--r-- | CHANGELOG.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a5e29845..c573b12ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md | |||
@@ -8,7 +8,7 @@ | |||
8 | * `cd /var/www/peertube/peertube-latest && sudo -u peertube NODE_CONFIG_DIR=/var/www/peertube/config NODE_ENV=production node dist/scripts/migrations/peertube-2.1.js` | 8 | * `cd /var/www/peertube/peertube-latest && sudo -u peertube NODE_CONFIG_DIR=/var/www/peertube/config NODE_ENV=production node dist/scripts/migrations/peertube-2.1.js` |
9 | * **/!\ VERY IMPORTANT /!\\** In the next PeerTube release (v2.2.0), we'll add a unique index on actors usernames to fix some federation bugs. | 9 | * **/!\ VERY IMPORTANT /!\\** In the next PeerTube release (v2.2.0), we'll add a unique index on actors usernames to fix some federation bugs. |
10 | Please check now if you have conflicts using: | 10 | Please check now if you have conflicts using: |
11 | * Go inside your database using `psql` and run `select "preferredUsername" from actor where "serverId" is null group by "preferredUsername" having count(*) > 1` | 11 | * Go inside your database using `sudo -u postgres psql peertube_prod` and run `select "preferredUsername" from actor where "serverId" is null group by "preferredUsername" having count(*) > 1;` |
12 | * If you have some results, it seems you have duplicate channels/accounts. | 12 | * If you have some results, it seems you have duplicate channels/accounts. |
13 | For every entry, you'll have to change the preferredUsername of the entry you want (so they are unique). | 13 | For every entry, you'll have to change the preferredUsername of the entry you want (so they are unique). |
14 | The updated actors could have some federations issues | 14 | The updated actors could have some federations issues |