summaryrefslogtreecommitdiff
path: root/interfaces/worker
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2020-12-20 18:28:08 +0300
committerGitHub <[email protected]>2020-12-20 18:28:08 +0300
commita10d20d20e910ed8fcfbc3bc690aaf17ee338ff3 (patch)
tree6f017d59c92a59308c00aa3c338ea32b96f2d13d /interfaces/worker
parent0e02ec510acca9cd8691071850ba95a6cb91d78d (diff)
parent35ee3b921be6e4416ff26a610f2f95044ff80cbd (diff)
Merge pull request #456 from spiral/reload/tests_stabilization
Reload/tests stabilization
Diffstat (limited to 'interfaces/worker')
-rw-r--r--interfaces/worker/worker.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/interfaces/worker/worker.go b/interfaces/worker/worker.go
index 773dd044..f830fdf2 100644
--- a/interfaces/worker/worker.go
+++ b/interfaces/worker/worker.go
@@ -5,7 +5,7 @@ import (
"fmt"
"time"
- "github.com/spiral/goridge/v3"
+ "github.com/spiral/goridge/v3/interfaces/relay"
"github.com/spiral/roadrunner/v2/interfaces/events"
"github.com/spiral/roadrunner/v2/internal"
"github.com/spiral/roadrunner/v2/pkg/payload"
@@ -47,10 +47,10 @@ type BaseProcess interface {
Kill() error
// Relay returns attached to worker goridge relay
- Relay() goridge.Relay
+ Relay() relay.Relay
// AttachRelay used to attach goridge relay to the worker process
- AttachRelay(rl goridge.Relay)
+ AttachRelay(rl relay.Relay)
}
type SyncWorker interface {