mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-30 00:56:44 +01:00
wrong errno
This commit is contained in:
parent
aaf23bff89
commit
a17c26a334
@ -52,7 +52,7 @@ namespace mongo {
|
||||
uassert(13096, "bad --replset config string - dups?", temp.count(m) == 0 ); // these uasserts leak seeds but that's ok
|
||||
temp.insert(m);
|
||||
|
||||
uassert(10000, "can't use localhost in replset host list", !m.isLocalHost());
|
||||
uassert(13101, "can't use localhost in replset host list", !m.isLocalHost());
|
||||
|
||||
if( m.isSelf() )
|
||||
log() << "replSet: ignoring seed " << m.toString() << " (=self)" << endl;
|
||||
|
Loading…
Reference in New Issue
Block a user