minor: :name is a valid ReplSetConnection option
This commit is contained in:
parent
7f0c9fa87c
commit
311623d81d
|
@ -21,7 +21,8 @@ module Mongo
|
||||||
# Instantiates and manages connections to a MongoDB replica set.
|
# Instantiates and manages connections to a MongoDB replica set.
|
||||||
class ReplSetConnection < Connection
|
class ReplSetConnection < Connection
|
||||||
|
|
||||||
REPL_SET_OPTS = [:read, :refresh_mode, :refresh_interval, :require_primary, :read_secondary, :rs_name]
|
REPL_SET_OPTS = [:read, :refresh_mode, :refresh_interval, :require_primary,
|
||||||
|
:read_secondary, :rs_name, :name]
|
||||||
|
|
||||||
attr_reader :replica_set_name, :seeds, :refresh_interval, :refresh_mode,
|
attr_reader :replica_set_name, :seeds, :refresh_interval, :refresh_mode,
|
||||||
:refresh_version
|
:refresh_version
|
||||||
|
@ -35,7 +36,7 @@ module Mongo
|
||||||
#
|
#
|
||||||
# @param [Array] seeds "host:port" strings
|
# @param [Array] seeds "host:port" strings
|
||||||
#
|
#
|
||||||
# @option opts [String] :rs_name (nil) The name of the replica set to connect to. You
|
# @option opts [String] :name (nil) The name of the replica set to connect to. You
|
||||||
# can use this option to verify that you're connecting to the right replica set.
|
# can use this option to verify that you're connecting to the right replica set.
|
||||||
# @option opts [Boolean, Hash] :safe (false) Set the default safe-mode options
|
# @option opts [Boolean, Hash] :safe (false) Set the default safe-mode options
|
||||||
# propogated to DB objects instantiated off of this Connection. This
|
# propogated to DB objects instantiated off of this Connection. This
|
||||||
|
|
Loading…
Reference in New Issue