Skip to content

Commit 7964701

Browse files
generatedunixname1030151775592158facebook-github-bot
authored andcommitted
ThriftRemoveRefSuffix_instagram_ranking_tao_features [B]
Reviewed By: dtolnay Differential Revision: D76684170 fbshipit-source-id: 071e16a605572a7296ee3bee85826f7f9af14046
1 parent 2acdd38 commit 7964701

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

third-party/mcrouter/src/mcrouter/routes/DestinationRoute.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ class DestinationRoute {
109109
auto finalReq = addDeleteRequestSource(
110110
req, memcache::McDeleteRequestSource::FAILED_INVALIDATION);
111111
// Make sure bucket id is set in request
112-
finalReq.bucketId_ref() = fmt::to_string(*bucketId);
112+
finalReq.bucketId() = fmt::to_string(*bucketId);
113113
spool(finalReq, axonCtx, bucketId);
114114
auto reply = createReply(DefaultReply, finalReq);
115115
reply.setDestination(destination_->accessPoint());

third-party/mcrouter/src/mcrouter/routes/DistributionRoute.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ class DistributionRoute {
110110
auto bucketId = fiber_local<RouterInfo>::getBucketId();
111111
assert(axonCtx && bucketId);
112112
auto finalReq = req;
113-
finalReq.bucketId_ref() = fmt::to_string(*bucketId);
113+
finalReq.bucketId() = fmt::to_string(*bucketId);
114114
auto distributionRegion = distributionRegionOpt.value().empty()
115115
? std::string(kBroadcast)
116116
: std::move(distributionRegionOpt.value());

0 commit comments

Comments
 (0)