You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ap...@apache.org on 2019/06/04 14:59:50 UTC

[arrow] branch master updated: ARROW-5507: [Plasma] [CUDA] Fix compile error

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

apitrou pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new f22aee6  ARROW-5507: [Plasma] [CUDA] Fix compile error
f22aee6 is described below

commit f22aee606375bdceedb799b2a47dcb1980c7ad07
Author: Antoine Pitrou <an...@python.org>
AuthorDate: Tue Jun 4 16:59:36 2019 +0200

    ARROW-5507: [Plasma] [CUDA] Fix compile error
    
    Author: Antoine Pitrou <an...@python.org>
    
    Closes #4468 from pitrou/ARROW-5507-plasma-cuda-compile-error and squashes the following commits:
    
    66387d290 <Antoine Pitrou> ARROW-5507:   Fix compile error
---
 cpp/src/plasma/protocol.cc | 1 -
 1 file changed, 1 deletion(-)

diff --git a/cpp/src/plasma/protocol.cc b/cpp/src/plasma/protocol.cc
index cf8a7f2..b87656b 100644
--- a/cpp/src/plasma/protocol.cc
+++ b/cpp/src/plasma/protocol.cc
@@ -543,7 +543,6 @@ Status SendGetReply(int sock, ObjectID object_ids[],
     if (object.device_num != 0) {
       std::shared_ptr<arrow::Buffer> handle;
       RETURN_NOT_OK(object.ipc_handle->Serialize(arrow::default_memory_pool(), &handle));
-      handles.push_back(fb::CreateCudaHandle(fbb, fbb.CreateVector(handle)));
       handles.push_back(
           fb::CreateCudaHandle(fbb, fbb.CreateVector(handle->data(), handle->size())));
     }