summaryrefslogtreecommitdiff
path: root/pipe_factory.go
diff options
context:
space:
mode:
authorWolfy-J <[email protected]>2018-06-05 22:48:27 +0300
committerWolfy-J <[email protected]>2018-06-05 22:48:27 +0300
commit6adaf713b47c9a3ab3a516e21d2d4ecf7f2075d6 (patch)
tree6bcf1bfea1e2f87a3ae7065612c0df43c90c1cdc /pipe_factory.go
parent3112f9b58c73773cea972fd79f04d33f8f7d7edd (diff)
breaking the tests
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
+}