diff options
Diffstat (limited to 'internal')
-rw-r--r-- | internal/cli/serve/command.go | 2 | ||||
-rw-r--r-- | internal/cli/workers/command.go | 2 | ||||
-rw-r--r-- | internal/cli/workers/render.go | 2 | ||||
-rw-r--r-- | internal/rpc/client.go | 2 | ||||
-rw-r--r-- | internal/rpc/client_test.go | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/internal/cli/serve/command.go b/internal/cli/serve/command.go index a4ee2189..c508fafe 100644 --- a/internal/cli/serve/command.go +++ b/internal/cli/serve/command.go @@ -10,7 +10,7 @@ import ( "github.com/roadrunner-server/roadrunner/v2/container" "github.com/roadrunner-server/roadrunner/v2/internal/meta" - configImpl "github.com/roadrunner-server/config/v3" + configImpl "github.com/roadrunner-server/config/v4" "github.com/roadrunner-server/errors" "github.com/spf13/cobra" ) diff --git a/internal/cli/workers/command.go b/internal/cli/workers/command.go index caee83ac..00237152 100644 --- a/internal/cli/workers/command.go +++ b/internal/cli/workers/command.go @@ -14,7 +14,7 @@ import ( tm "github.com/buger/goterm" "github.com/fatih/color" "github.com/roadrunner-server/errors" - "github.com/roadrunner-server/informer/v3" + "github.com/roadrunner-server/informer/v4" "github.com/spf13/cobra" ) diff --git a/internal/cli/workers/render.go b/internal/cli/workers/render.go index 28b94c56..dd9ea183 100644 --- a/internal/cli/workers/render.go +++ b/internal/cli/workers/render.go @@ -10,7 +10,7 @@ import ( "github.com/fatih/color" "github.com/olekukonko/tablewriter" "github.com/roadrunner-server/api/v3/plugins/v1/jobs" - "github.com/roadrunner-server/sdk/v3/state/process" + "github.com/roadrunner-server/sdk/v4/state/process" ) const ( diff --git a/internal/rpc/client.go b/internal/rpc/client.go index 3096fd78..2fe63407 100644 --- a/internal/rpc/client.go +++ b/internal/rpc/client.go @@ -11,7 +11,7 @@ import ( "strings" goridgeRpc "github.com/roadrunner-server/goridge/v3/pkg/rpc" - rpcPlugin "github.com/roadrunner-server/rpc/v3" + rpcPlugin "github.com/roadrunner-server/rpc/v4" "github.com/spf13/viper" ) diff --git a/internal/rpc/client_test.go b/internal/rpc/client_test.go index c74df9cc..fc03981d 100644 --- a/internal/rpc/client_test.go +++ b/internal/rpc/client_test.go @@ -5,7 +5,7 @@ import ( "os" "testing" - "github.com/roadrunner-server/config/v3" + "github.com/roadrunner-server/config/v4" "github.com/roadrunner-server/roadrunner/v2/internal/rpc" "github.com/stretchr/testify/require" |