diff options
Diffstat (limited to 'plugins/rpc')
-rw-r--r-- | plugins/rpc/config.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/rpc/config.go b/plugins/rpc/config.go index 719fd5e3..d7531435 100644 --- a/plugins/rpc/config.go +++ b/plugins/rpc/config.go @@ -5,7 +5,7 @@ import ( "net" "strings" - "github.com/spiral/roadrunner/v2/util" + "github.com/spiral/roadrunner/v2/utils" ) // Config defines RPC service config. @@ -35,7 +35,7 @@ func (c *Config) Valid() error { // Listener creates new rpc socket Listener. func (c *Config) Listener() (net.Listener, error) { - return util.CreateListener(c.Listen) + return utils.CreateListener(c.Listen) } // Dialer creates rpc socket Dialer. |