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

Fixing the broken wikipedia link for Optimistic Concurrency control #11285

Merged
merged 1 commit into from
Jul 4, 2013
Merged
Changes from all commits
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
2 changes: 1 addition & 1 deletion activerecord/lib/active_record/validations/uniqueness.rb
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ module ClassMethods
# can catch it and restart the transaction (e.g. by telling the user # can catch it and restart the transaction (e.g. by telling the user
# that the title already exists, and asking him to re-enter the title). # that the title already exists, and asking him to re-enter the title).
# This technique is also known as optimistic concurrency control: # This technique is also known as optimistic concurrency control:
# http://en.wikipedia.org/wiki/Optimistic_concurrency_control. # http://en.wikipedia.org/wiki/Optimistic_concurrency_control .
# #
# The bundled ActiveRecord::ConnectionAdapters distinguish unique index # The bundled ActiveRecord::ConnectionAdapters distinguish unique index
# constraint errors from other types of database errors by throwing an # constraint errors from other types of database errors by throwing an
Expand Down