diff options
Diffstat (limited to 's/config.cpp')
| -rw-r--r-- | s/config.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/s/config.cpp b/s/config.cpp index 35a3be2d334..9ed3207edd3 100644 --- a/s/config.cpp +++ b/s/config.cpp @@ -143,7 +143,9 @@ namespace mongo { _save(); try { - cm->maybeChunkCollection(); + if ( cm->maybeChunkCollection() ) { + _load(); + } } catch ( UserException& e ) { // failure to chunk is not critical enough to abort the command (and undo the _save()'d configDB state) |
