summaryrefslogtreecommitdiff
path: root/pipe_factory.go
diff options
context:
space:
mode:
Diffstat (limited to 'pipe_factory.go')
-rw-r--r--pipe_factory.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/pipe_factory.go b/pipe_factory.go
index 1ebcc69d..d6fe0420 100644
--- a/pipe_factory.go
+++ b/pipe_factory.go
@@ -61,3 +61,8 @@ func (f *PipeFactory) SpawnWorker(cmd *exec.Cmd) (w *Worker, err error) {
w.state.set(StateReady)
return w, nil
}
+
+// Close the factory.
+func (f *PipeFactory) Close() error {
+ return nil
+}