summaryrefslogtreecommitdiff
path: root/cmd/rr/http
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2020-02-23 15:15:02 +0300
committerValery Piashchynski <[email protected]>2020-02-23 15:15:02 +0300
commit2b70159897b52e99f4040d1fe6571622c1e7459a (patch)
tree981e63f1cbb89e222ef6568fadb0afd37c548f29 /cmd/rr/http
parentd4d83ac0043cb15d19ae4fa49095434b1c594451 (diff)
Add FW to removes and deletes
Diffstat (limited to 'cmd/rr/http')
-rw-r--r--cmd/rr/http/debug.go4
-rw-r--r--cmd/rr/http/metrics.go2
-rw-r--r--cmd/rr/http/reset.go4
-rw-r--r--cmd/rr/http/workers.go4
4 files changed, 7 insertions, 7 deletions
diff --git a/cmd/rr/http/debug.go b/cmd/rr/http/debug.go
index ae383e8d..5dfbedc3 100644
--- a/cmd/rr/http/debug.go
+++ b/cmd/rr/http/debug.go
@@ -5,9 +5,9 @@ import (
"github.com/sirupsen/logrus"
"github.com/spf13/cobra"
"github.com/spiral/roadrunner"
- rr "github.com/spiral/roadrunner/cmd/rr/cmd"
- "github.com/spiral/roadrunner/cmd/util"
rrhttp "github.com/spiral/roadrunner/service/http"
+ rr "github.com/spiral/roadrunner/service/reload/cmd/rr/cmd"
+ "github.com/spiral/roadrunner/service/reload/cmd/util"
"net"
"net/http"
"strings"
diff --git a/cmd/rr/http/metrics.go b/cmd/rr/http/metrics.go
index 21bbbaf1..df093921 100644
--- a/cmd/rr/http/metrics.go
+++ b/cmd/rr/http/metrics.go
@@ -3,9 +3,9 @@ package http
import (
"github.com/prometheus/client_golang/prometheus"
"github.com/spf13/cobra"
- rr "github.com/spiral/roadrunner/cmd/rr/cmd"
rrhttp "github.com/spiral/roadrunner/service/http"
"github.com/spiral/roadrunner/service/metrics"
+ rr "github.com/spiral/roadrunner/service/reload/cmd/rr/cmd"
"github.com/spiral/roadrunner/util"
"strconv"
"time"
diff --git a/cmd/rr/http/reset.go b/cmd/rr/http/reset.go
index 3008848a..d5c45338 100644
--- a/cmd/rr/http/reset.go
+++ b/cmd/rr/http/reset.go
@@ -22,8 +22,8 @@ package http
import (
"github.com/spf13/cobra"
- rr "github.com/spiral/roadrunner/cmd/rr/cmd"
- "github.com/spiral/roadrunner/cmd/util"
+ rr "github.com/spiral/roadrunner/service/reload/cmd/rr/cmd"
+ "github.com/spiral/roadrunner/service/reload/cmd/util"
)
func init() {
diff --git a/cmd/rr/http/workers.go b/cmd/rr/http/workers.go
index 4444b87f..faf07fd0 100644
--- a/cmd/rr/http/workers.go
+++ b/cmd/rr/http/workers.go
@@ -23,9 +23,9 @@ package http
import (
tm "github.com/buger/goterm"
"github.com/spf13/cobra"
- rr "github.com/spiral/roadrunner/cmd/rr/cmd"
- "github.com/spiral/roadrunner/cmd/util"
"github.com/spiral/roadrunner/service/http"
+ rr "github.com/spiral/roadrunner/service/reload/cmd/rr/cmd"
+ "github.com/spiral/roadrunner/service/reload/cmd/util"
"net/rpc"
"os"
"os/signal"