summaryrefslogtreecommitdiff
path: root/db/curop.h
diff options
context:
space:
mode:
Diffstat (limited to 'db/curop.h')
-rw-r--r--db/curop.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/db/curop.h b/db/curop.h
index 7c70ad61890..926667b944e 100644
--- a/db/curop.h
+++ b/db/curop.h
@@ -131,10 +131,10 @@ namespace mongo {
void checkForInterrupt() {
if( state != Off ) {
if( state == All )
- uasserted("interrupted at shutdown");
+ uasserted(11600,"interrupted at shutdown");
if( cc().curop()->opNum() == toKill ) {
state = Off;
- uasserted("interrupted");
+ uasserted(11601,"interrupted");
}
}
}