summaryrefslogtreecommitdiff
path: root/src/mongo/s/d_migrate.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/s/d_migrate.cpp')
-rw-r--r--src/mongo/s/d_migrate.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/s/d_migrate.cpp b/src/mongo/s/d_migrate.cpp
index 9b24ee44525..a74198e6464 100644
--- a/src/mongo/s/d_migrate.cpp
+++ b/src/mongo/s/d_migrate.cpp
@@ -1273,7 +1273,7 @@ namespace {
// Resolve the shard connection strings.
{
- boost::shared_ptr<Shard> fromShard =
+ std::shared_ptr<Shard> fromShard =
grid.shardRegistry()->findIfExists(fromShardName);
uassert(28674,
str::stream() << "Source shard " << fromShardName
@@ -1282,7 +1282,7 @@ namespace {
fromShardCS = fromShard->getConnString();
- boost::shared_ptr<Shard> toShard = grid.shardRegistry()->findIfExists(toShardName);
+ std::shared_ptr<Shard> toShard = grid.shardRegistry()->findIfExists(toShardName);
uassert(28675,
str::stream() << "Destination shard " << toShardName
<< " is missing. This indicates metadata corruption.",