mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-01 02:00:01 +00:00
d4dccd17ae
Merge pull request 'Adding unique ap_ids. Fixes #1100' (#90) from unique_ap_ids into activity-sender Reviewed-on: https://yerbamate.dev/LemmyNet/lemmy/pulls/90 Adding back in on_conflict. Trying to add back in the on_conflict_do_nothing. Trying to reduce delay time. Removing createFakes. Removing some unit tests. Adding comment jest timeout. Fixing tests again. Fixing tests again. Merge branch 'activity-sender' into unique_ap_ids_2 Replace actix client with reqwest to speed up federation tests Trying to fix tests again. Fixing unit tests. Fixing some broken unit tests, not done yet. Adding uniques. Adding unique ap_ids. Fixes #1100 use proper sql functionality for upsert added logging in fetcher, replace post/comment::create with upsert no need to do an actual update in post/comment::upsert Merge branch 'main' into activity-sender implement upsert for user/community reuse http client got it working attempt to use background-jobs crate rewrite with proper error handling and less boilerplate remove do_send, dont return errors from activity_sender WIP: implement ActivitySender actor Co-authored-by: dessalines <dessalines@noreply.yerbamate.dev> Co-authored-by: Dessalines <tyhou13@gmx.com> Co-authored-by: Felix Ableitner <me@nutomic.com> Reviewed-on: https://yerbamate.dev/LemmyNet/lemmy/pulls/89
27 lines
928 B
SQL
Vendored
27 lines
928 B
SQL
Vendored
-- Drop the uniques
|
|
alter table private_message drop constraint idx_private_message_ap_id;
|
|
alter table post drop constraint idx_post_ap_id;
|
|
alter table comment drop constraint idx_comment_ap_id;
|
|
alter table user_ drop constraint idx_user_actor_id;
|
|
alter table community drop constraint idx_community_actor_id;
|
|
|
|
alter table private_message alter column ap_id set not null;
|
|
alter table private_message alter column ap_id set default 'http://fake.com';
|
|
|
|
alter table post alter column ap_id set not null;
|
|
alter table post alter column ap_id set default 'http://fake.com';
|
|
|
|
alter table comment alter column ap_id set not null;
|
|
alter table comment alter column ap_id set default 'http://fake.com';
|
|
|
|
update private_message
|
|
set ap_id = 'http://fake.com'
|
|
where ap_id like 'changeme_%';
|
|
|
|
update post
|
|
set ap_id = 'http://fake.com'
|
|
where ap_id like 'changeme_%';
|
|
|
|
update comment
|
|
set ap_id = 'http://fake.com'
|
|
where ap_id like 'changeme_%';
|