Exception: Moped::Errors::PotentialReconfiguration

Inherits:
MongoError show all
Defined in:
lib/moped/errors.rb

Overview

Classes of errors that could be caused by a replica set reconfiguration.

Direct Known Subclasses

OperationFailure, QueryFailure

Constant Summary collapse

NOT_MASTER =

Not master error codes.

[ 13435, 13436 ]

Instance Attribute Summary

Attributes inherited from MongoError

#command, #command The command that generated the error., #details, #details The details about the error.

Instance Method Summary collapse

Methods inherited from MongoError

#initialize

Constructor Details

This class inherits a constructor from Moped::Errors::MongoError

Instance Method Details

#reconfiguring_replica_set?Boolean

Replica set reconfigurations can be either in the form of an operation error with code 13435, or with an error message stating the server is not a master. (This encapsulates codes 10054, 10056, 10058)

Returns:

  • (Boolean)


108
109
110
111
# File 'lib/moped/errors.rb', line 108

def reconfiguring_replica_set?
  err = details["err"] || details["errmsg"] || details["$err"] || ""
  NOT_MASTER.include?(details["code"]) || err.include?("not master")
end