Skip to content
Snippets Groups Projects

Improve database response time for listing user activity

Merged Andreas Brandl requested to merge 40525-listing-user-activity-timeouts into master
All threads resolved!
4 files
+ 9
9
Compare changes
  • Side-by-side
  • Inline
Files
4
+ 1
1
@@ -395,6 +395,6 @@ def track_user_interacted_projects
# Note the call to .available? is due to earlier migrations
# that would otherwise conflict with the call to .track
# (because the table does not exist yet).
UserInteractedProjects.track(self) if UserInteractedProjects.available?
UserInteractedProject.track(self) if UserInteractedProject.available?
end
end
Loading