Skip to content

Commit

Permalink
[Build] Fix symbol problems (ray-project#15187)
Browse files Browse the repository at this point in the history
  • Loading branch information
rkooo567 authored Apr 8, 2021
1 parent e4ca337 commit bd58a9a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ray/core_worker/core_worker.cc
Original file line number Diff line number Diff line change
Expand Up @@ -671,7 +671,7 @@ CoreWorker::CoreWorker(const CoreWorkerOptions &options, const WorkerID &worker_

// Start the IO thread after all other members have been initialized, in case
// the thread calls back into any of our members.
io_thread_ = std::thread(&CoreWorker::RunIOService, this);
io_thread_ = std::thread([this]() { RunIOService(); });
// Tell the raylet the port that we are listening on.
// NOTE: This also marks the worker as available in Raylet. We do this at the
// very end in case there is a problem during construction.
Expand Down
2 changes: 1 addition & 1 deletion src/ray/object_manager/plasma/client.cc
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ using fb::PlasmaError;

/// A Buffer class that automatically releases the backing plasma object
/// when it goes out of scope. This is returned by Get.
class RAY_NO_EXPORT PlasmaBuffer : public SharedMemoryBuffer {
class PlasmaBuffer : public SharedMemoryBuffer {
public:
~PlasmaBuffer();

Expand Down

0 comments on commit bd58a9a

Please sign in to comment.