Skip to content

Commit

Permalink
Move after
Browse files Browse the repository at this point in the history
  • Loading branch information
garethsb committed Feb 27, 2020
1 parent c940ebd commit 98e47db
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Release/src/http/client/http_client_asio.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2127,8 +2127,9 @@ pplx::task<http_response> http_redirect_follower::operator()(http_response respo
http_client client(to_follow, config_no_redirects);

// Stash the redirect request URL and make the request with the same continuation
auto request_task = client.request(redirect, redirect._cancellation_token());
followed_urls.push_back(std::move(to_follow));
return client.request(redirect, redirect._cancellation_token()).then(std::move(*this));
request_task.then(std::move(*this));
}

pplx::task<http_response> asio_client::propagate(http_request request)
Expand Down

0 comments on commit 98e47db

Please sign in to comment.