()
| 112 | } |
| 113 | |
| 114 | func (c *Client) rdma() (*rdmaClientHandle, error) { |
| 115 | c.rdmaOnce.Do(func() { |
| 116 | c.rdmaHandle, c.rdmaInitErr = newRDMAClient(c) |
| 117 | }) |
| 118 | return c.rdmaHandle, c.rdmaInitErr |
| 119 | } |
| 120 | |
| 121 | func lastRDMAError() string { |
| 122 | msg := C.miniocpp_last_error() |
no test coverage detected