summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/models/user_interacted_project.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/models/user_interacted_project.rb b/app/models/user_interacted_project.rb
index 68cb3c01c50..dd55a6acb79 100644
--- a/app/models/user_interacted_project.rb
+++ b/app/models/user_interacted_project.rb
@@ -30,9 +30,9 @@ class UserInteractedProject < ActiveRecord::Base
rescue ActiveRecord::RecordNotUnique
# Note, above queries are not atomic and prone
# to race conditions (similar like #find_or_create!).
- # We retry and make sure the outer transaction (if any)
- # is not aborted because of this.
- retry
+ # In the case where we hit this, the record we want
+ # already exists - shortcut and return.
+ true
end
end
end