From 2145130d217c0ce56bfab214964b5b2197c1955a Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Sun, 31 Jan 2021 11:51:12 +0100 Subject: [PATCH] :sparkles: Minor changes on delete profile tasks. For testing purposes mainly. --- backend/src/app/tasks/delete_profile.clj | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/backend/src/app/tasks/delete_profile.clj b/backend/src/app/tasks/delete_profile.clj index 0d0b5f47ea..2f8a2a668d 100644 --- a/backend/src/app/tasks/delete_profile.clj +++ b/backend/src/app/tasks/delete_profile.clj @@ -82,5 +82,6 @@ [conn profile-id] (log/infof "Proceding to delete all data related to profile id = %s" profile-id) (delete-teams conn profile-id) - (delete-profile conn profile-id)) + (delete-profile conn profile-id) + true)