You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@heron.apache.org by ni...@apache.org on 2020/06/27 05:05:09 UTC

[incubator-heron] branch nicknezis/return-std-move-fix created (now 1e52e03)

This is an automated email from the ASF dual-hosted git repository.

nicknezis pushed a change to branch nicknezis/return-std-move-fix
in repository https://gitbox.apache.org/repos/asf/incubator-heron.git.


      at 1e52e03  Fixing over optimization

This branch includes the following new commits:

     new 1e52e03  Fixing over optimization

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[incubator-heron] 01/01: Fixing over optimization

Posted by ni...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

nicknezis pushed a commit to branch nicknezis/return-std-move-fix
in repository https://gitbox.apache.org/repos/asf/incubator-heron.git

commit 1e52e031cdf46f8c28cb7f4682ca8a1689634ce6
Author: Nicholas Nezis <ni...@gmail.com>
AuthorDate: Sat Jun 27 01:04:37 2020 -0400

    Fixing over optimization
---
 heron/tmaster/src/cpp/manager/tmaster.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/heron/tmaster/src/cpp/manager/tmaster.cpp b/heron/tmaster/src/cpp/manager/tmaster.cpp
index 36b7845..f8dd296 100644
--- a/heron/tmaster/src/cpp/manager/tmaster.cpp
+++ b/heron/tmaster/src/cpp/manager/tmaster.cpp
@@ -863,7 +863,7 @@ std::unique_ptr<proto::tmaster::StmgrsRegistrationSummaryResponse> TMaster::GetS
     response->add_absent_stmgrs(*it);
   }
 
-  return std::move(response);
+  return response;
 }
 
 shared_ptr<proto::system::PhysicalPlan> TMaster::MakePhysicalPlan() {