summaryrefslogtreecommitdiff
path: root/server.go
diff options
context:
space:
mode:
Diffstat (limited to 'server.go')
-rw-r--r--server.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/server.go b/server.go
index ef5bb413..0291b90f 100644
--- a/server.go
+++ b/server.go
@@ -1,9 +1,9 @@
package roadrunner
import (
- "sync"
- "os/exec"
"fmt"
+ "os/exec"
+ "sync"
)
const (
@@ -84,7 +84,7 @@ func (r *Server) Observe(o func(event int, ctx interface{})) {
}
// Pool returns active pool or error.
-func (r *Server) Pool() (Pool) {
+func (r *Server) Pool() Pool {
r.mu.Lock()
defer r.mu.Unlock()