summaryrefslogtreecommitdiff
path: root/internal
diff options
context:
space:
mode:
Diffstat (limited to 'internal')
-rw-r--r--internal/cli/serve/command.go2
-rw-r--r--internal/cli/workers/command.go2
-rw-r--r--internal/cli/workers/render.go2
-rw-r--r--internal/rpc/client.go2
-rw-r--r--internal/rpc/client_test.go2
5 files changed, 5 insertions, 5 deletions
diff --git a/internal/cli/serve/command.go b/internal/cli/serve/command.go
index 6c6d2e1f..6304b7b6 100644
--- a/internal/cli/serve/command.go
+++ b/internal/cli/serve/command.go
@@ -11,7 +11,7 @@ import (
"github.com/roadrunner-server/roadrunner/v2024/internal/meta"
"github.com/roadrunner-server/roadrunner/v2024/internal/sdnotify"
- configImpl "github.com/roadrunner-server/config/v4"
+ configImpl "github.com/roadrunner-server/config/v5"
"github.com/roadrunner-server/errors"
"github.com/spf13/cobra"
)
diff --git a/internal/cli/workers/command.go b/internal/cli/workers/command.go
index a95f9b64..8ea69600 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/v4"
+ "github.com/roadrunner-server/informer/v5"
"github.com/spf13/cobra"
)
diff --git a/internal/cli/workers/render.go b/internal/cli/workers/render.go
index 6d60f177..e18fb243 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/v4/plugins/v1/jobs"
- "github.com/roadrunner-server/sdk/v4/state/process"
+ "github.com/roadrunner-server/pool/state/process"
)
const (
diff --git a/internal/rpc/client.go b/internal/rpc/client.go
index 91d4f09b..26d60d24 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/v4"
+ rpcPlugin "github.com/roadrunner-server/rpc/v5"
"github.com/spf13/viper"
)
diff --git a/internal/rpc/client_test.go b/internal/rpc/client_test.go
index 0bc11da4..453491ff 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/v4"
+ "github.com/roadrunner-server/config/v5"
"github.com/roadrunner-server/roadrunner/v2024/internal/rpc"
"github.com/stretchr/testify/require"