Skip to content
This repository has been archived by the owner on Jan 15, 2024. It is now read-only.

Commit

Permalink
Merge pull request #229 from gkopylov/namespace_fix
Browse files Browse the repository at this point in the history
mongoid/mongoid#3366 Issue with namespace
  • Loading branch information
arthurnn committed Nov 6, 2013
2 parents b666a40 + a830152 commit 0af9bab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/moped/connection.rb
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def read
sock_read = read_data(socket, reply.length - 36)
buffer = StringIO.new(sock_read)
reply.documents = reply.count.times.map do
BSON::Document.from_bson(buffer)
::BSON::Document.from_bson(buffer)
end
end
reply
Expand Down

0 comments on commit 0af9bab

Please sign in to comment.