summaryrefslogtreecommitdiff
path: root/src/mongo/base
diff options
context:
space:
mode:
authorJudah Schvimer <judah@mongodb.com>2019-05-20 16:10:46 -0400
committerJudah Schvimer <judah@mongodb.com>2019-05-20 16:10:46 -0400
commitb205efb00fd6e9ce27646070e934983384e8c0e2 (patch)
tree76580416b9c78d4e3290c680907aebd350873a62 /src/mongo/base
parentfae0c3f0fa4d5dfbe2f4fb03715b60e9ce3e2d93 (diff)
downloadmongo-b205efb00fd6e9ce27646070e934983384e8c0e2.tar.gz
SERVER-41216 Rename InterruptedDueToStepDown error code to InterruptedDueToReplStateChange
Diffstat (limited to 'src/mongo/base')
-rw-r--r--src/mongo/base/error_codes.err8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mongo/base/error_codes.err b/src/mongo/base/error_codes.err
index b34ac7c5c61..b870f1cd73a 100644
--- a/src/mongo/base/error_codes.err
+++ b/src/mongo/base/error_codes.err
@@ -279,7 +279,7 @@ error_code("UnsatisfiableCommitQuorum", 278)
error_code("ClientDisconnect", 279)
error_code("ChangeStreamFatalError", 280)
# The two codes below are for internal use only and must never be returned in a network response
-error_code("TransactionCoordinatorSteppingDown", 281) # Gets converted to InterruptedDueToStepDown
+error_code("TransactionCoordinatorSteppingDown", 281) # Gets converted to InterruptedDueToReplStateChange
error_code("TransactionCoordinatorReachedAbortDecision", 282)
error_code("WouldChangeOwningShard", 283, extra="WouldChangeOwningShardInfo")
error_code("ForTestingErrorExtraInfoWithExtraInfoInNamespace", 284, extra="nested::twice::NestedErrorExtraInfoExample")
@@ -300,7 +300,7 @@ error_code("BSONObjectTooLarge", 10334)
error_code("DuplicateKey", 11000, extra="DuplicateKeyErrorInfo")
error_code("InterruptedAtShutdown", 11600)
error_code("Interrupted", 11601)
-error_code("InterruptedDueToStepDown", 11602)
+error_code("InterruptedDueToReplStateChange", 11602)
error_code("OutOfDiskSpace", 14031 )
# TODO SERVER-36385: Mark KeyTooLong error as obsolete
error_code("KeyTooLong", 17280);
@@ -318,7 +318,7 @@ error_code("MergeStageNoMatchingDocument", 13113);
error_class("NetworkError", ["HostUnreachable", "HostNotFound", "NetworkTimeout", "SocketException"])
error_class("Interruption", ["Interrupted",
"InterruptedAtShutdown",
- "InterruptedDueToStepDown",
+ "InterruptedDueToReplStateChange",
"ExceededTimeLimit",
"MaxTimeMSExpired",
"CursorKilled",
@@ -332,7 +332,7 @@ error_class("NotMasterError", [
"NotMaster",
"NotMasterNoSlaveOk",
"NotMasterOrSecondary",
- "InterruptedDueToStepDown",
+ "InterruptedDueToReplStateChange",
"PrimarySteppedDown",
])
error_class("StaleShardVersionError",