Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DEV 1354: Delete usernames upon request #73

Merged
merged 21 commits into from
Feb 5, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update env stuff
  • Loading branch information
Takaros999 committed Jan 29, 2025
commit 7be29eff7a00c7699976f7b54ccc8c821ab889b5
6 changes: 2 additions & 4 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,10 @@ DEVELOPER_PORTAL_ENDPOINT=
REDIS_URL=redis://default:password@127.0.0.1:6379

# SQS Configuration
SQS_DELETION_REQUEST_QUEUE_NAME=wld-username-deletion-requests-local
SQS_DELETION_REQUEST_QUEUE_URL=http://localhost:4566/000000000000/data-deletion-queue
SQS_DELETION_REQUEST_QUEUE_URL=http://localhost:4566/000000000000/wld-username-deletion-requests-local
SQS_DELETION_REQUEST_MAX_MESSAGES=10

SQS_DELETION_COMPLETION_QUEUE_NAME=wld-username-deletion-requests-local
SQS_DELETION_COMPLETION_QUEUE_URL=http://localhost:4566/000000000000/data-deletion-queue
SQS_DELETION_COMPLETION_QUEUE_URL=http://localhost:4566/000000000000/wld-username-deletion-completion-local

# Postgres
POSTGRES_USER=postgres
Expand Down
1 change: 1 addition & 0 deletions src/data_deletion_worker/data_deletion_worker.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

4 changes: 4 additions & 0 deletions src/data_deletion_worker/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
pub mod data_deletion_worker;
mod deletion_completion_queue;
mod deletion_request_queue;
mod error;