From 505bc68aab8e39257399a5af168b7057e3a029e0 Mon Sep 17 00:00:00 2001 From: Kyle Banker Date: Tue, 10 May 2011 14:35:51 -0400 Subject: [PATCH] minor: RUBY-257 note log_message is a no-op on Connection#receive_message. --- lib/mongo/connection.rb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/mongo/connection.rb b/lib/mongo/connection.rb index d1b3b95..0270654 100644 --- a/lib/mongo/connection.rb +++ b/lib/mongo/connection.rb @@ -458,7 +458,10 @@ module Mongo # # @param [Integer] operation a MongoDB opcode. # @param [BSON::ByteBuffer] message a message to send to the database. + # @param [String] log_message this is currently a no-op and will be removed. # @param [Socket] socket a socket to use in lieu of checking out a new one. + # @param [Boolean] command (false) indicate whether this is a command. If this is a command, + # the message will be sent to the primary node. # # @return [Array] # An array whose indexes include [0] documents returned, [1] number of document received,