| 132 | } |
| 133 | |
| 134 | type executorWithRunning struct { |
| 135 | m *Manager |
| 136 | root string |
| 137 | exitChans map[string]chan struct{} |
| 138 | } |
| 139 | |
| 140 | func (e *executorWithRunning) Create(id string, spec specs.Spec, stdout, stderr io.WriteCloser) error { |
| 141 | sockAddr := filepath.Join(e.root, id, "plugin.sock") |
nothing calls this directly
no outgoing calls
no test coverage detected