0
0
Fork 0

Improve api/v1/markers#create performance against simultaneous requests (#28718)

This commit is contained in:
Matt Jankowski 2024-01-15 04:47:25 -05:00 committed by GitHub
parent cc3ff66246
commit e72676e83a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 14 deletions

View file

@ -19,7 +19,7 @@ class Api::V1::MarkersController < Api::BaseController
@markers = {}
resource_params.each_pair do |timeline, timeline_params|
@markers[timeline] = current_user.markers.find_or_initialize_by(timeline: timeline)
@markers[timeline] = current_user.markers.find_or_create_by(timeline: timeline)
@markers[timeline].update!(timeline_params)
end
end