File tree 2 files changed +3
-6
lines changed
2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -71,8 +71,7 @@ class ARROW_EXPORT PlasmaClient {
71
71
// / \return The return status.
72
72
Status Connect (const std::string& store_socket_name,
73
73
const std::string& manager_socket_name,
74
- int release_delay = kPlasmaDefaultReleaseDelay ,
75
- int num_retries = -1 );
74
+ int release_delay = kPlasmaDefaultReleaseDelay , int num_retries = -1 );
76
75
77
76
// / Create an object in the Plasma Store. Any metadata for this object must be
78
77
// / be passed in when the object is created.
Original file line number Diff line number Diff line change @@ -59,10 +59,8 @@ class TestPlasmaStore : public ::testing::Test {
59
59
" /plasma_store -m 1000000000 -s /tmp/store" +
60
60
store_index + " 1> /dev/null 2> /dev/null &" ;
61
61
system (plasma_command.c_str ());
62
- ARROW_CHECK_OK (
63
- client_.Connect (" /tmp/store" + store_index, " " ));
64
- ARROW_CHECK_OK (
65
- client2_.Connect (" /tmp/store" + store_index, " " ));
62
+ ARROW_CHECK_OK (client_.Connect (" /tmp/store" + store_index, " " ));
63
+ ARROW_CHECK_OK (client2_.Connect (" /tmp/store" + store_index, " " ));
66
64
}
67
65
virtual void TearDown () {
68
66
ARROW_CHECK_OK (client_.Disconnect ());
You can’t perform that action at this time.
0 commit comments