get the existing fifo paths from the task information stored by the daemon
(response *tasks.GetResponse, ioAttach cio.Attach)
| 511 | |
| 512 | // get the existing fifo paths from the task information stored by the daemon |
| 513 | func attachExistingIO(response *tasks.GetResponse, ioAttach cio.Attach) (cio.IO, error) { |
| 514 | fifoSet := loadFifos(response) |
| 515 | return ioAttach(fifoSet) |
| 516 | } |
| 517 | |
| 518 | // loadFifos loads the containers fifos |
| 519 | func loadFifos(response *tasks.GetResponse) *cio.FIFOSet { |
no test coverage detected
searching dependent graphs…