File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
third-party/mcrouter/src/mcrouter/routes Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff 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 ());
Original file line number Diff line number Diff 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 ());
You can’t perform that action at this time.
0 commit comments