Skip to content

Commit

Permalink
rename filter to filters
Browse files Browse the repository at this point in the history
  • Loading branch information
localvar committed Mar 4, 2022
1 parent 36480f3 commit 854072c
Show file tree
Hide file tree
Showing 75 changed files with 43 additions and 43 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion pkg/object/easemonitormetrics/easemonitormetrics.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import (
"github.com/Shopify/sarama"
jsoniter "github.com/json-iterator/go"

"github.com/megaease/easegress/pkg/filter/proxy"
"github.com/megaease/easegress/pkg/filters/proxy"
"github.com/megaease/easegress/pkg/logger"
"github.com/megaease/easegress/pkg/object/httppipeline"
"github.com/megaease/easegress/pkg/object/httpserver"
Expand Down
2 changes: 1 addition & 1 deletion pkg/object/function/spec/function.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (

k8sresource "k8s.io/apimachinery/pkg/api/resource"

"github.com/megaease/easegress/pkg/filter/requestadaptor"
"github.com/megaease/easegress/pkg/filters/requestadaptor"
"github.com/megaease/easegress/pkg/object/httpserver"
)

Expand Down
4 changes: 2 additions & 2 deletions pkg/object/function/worker/ingress.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ import (

"gopkg.in/yaml.v2"

"github.com/megaease/easegress/pkg/filter/proxy"
"github.com/megaease/easegress/pkg/filter/requestadaptor"
"github.com/megaease/easegress/pkg/filters/proxy"
"github.com/megaease/easegress/pkg/filters/requestadaptor"
"github.com/megaease/easegress/pkg/logger"
"github.com/megaease/easegress/pkg/object/function/spec"
"github.com/megaease/easegress/pkg/object/httppipeline"
Expand Down
2 changes: 1 addition & 1 deletion pkg/object/ingresscontroller/translator.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (
"strconv"
"strings"

"github.com/megaease/easegress/pkg/filter/proxy"
"github.com/megaease/easegress/pkg/filters/proxy"
"github.com/megaease/easegress/pkg/logger"
"github.com/megaease/easegress/pkg/object/httppipeline"
"github.com/megaease/easegress/pkg/object/httpserver"
Expand Down
14 changes: 7 additions & 7 deletions pkg/object/meshcontroller/spec/spec.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ import (
"gopkg.in/yaml.v2"

"github.com/megaease/easegress/pkg/cluster/customdata"
"github.com/megaease/easegress/pkg/filter/circuitbreaker"
"github.com/megaease/easegress/pkg/filter/meshadaptor"
"github.com/megaease/easegress/pkg/filter/mock"
"github.com/megaease/easegress/pkg/filter/proxy"
"github.com/megaease/easegress/pkg/filter/ratelimiter"
"github.com/megaease/easegress/pkg/filter/retryer"
"github.com/megaease/easegress/pkg/filter/timelimiter"
"github.com/megaease/easegress/pkg/filters/circuitbreaker"
"github.com/megaease/easegress/pkg/filters/meshadaptor"
"github.com/megaease/easegress/pkg/filters/mock"
"github.com/megaease/easegress/pkg/filters/proxy"
"github.com/megaease/easegress/pkg/filters/ratelimiter"
"github.com/megaease/easegress/pkg/filters/retryer"
"github.com/megaease/easegress/pkg/filters/timelimiter"
"github.com/megaease/easegress/pkg/logger"
"github.com/megaease/easegress/pkg/object/httppipeline"
"github.com/megaease/easegress/pkg/supervisor"
Expand Down
12 changes: 6 additions & 6 deletions pkg/object/meshcontroller/spec/spec_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ import (
"os"
"testing"

"github.com/megaease/easegress/pkg/filter/circuitbreaker"
"github.com/megaease/easegress/pkg/filter/mock"
"github.com/megaease/easegress/pkg/filter/proxy"
"github.com/megaease/easegress/pkg/filter/ratelimiter"
"github.com/megaease/easegress/pkg/filter/retryer"
"github.com/megaease/easegress/pkg/filter/timelimiter"
"github.com/megaease/easegress/pkg/filters/circuitbreaker"
"github.com/megaease/easegress/pkg/filters/mock"
"github.com/megaease/easegress/pkg/filters/proxy"
"github.com/megaease/easegress/pkg/filters/ratelimiter"
"github.com/megaease/easegress/pkg/filters/retryer"
"github.com/megaease/easegress/pkg/filters/timelimiter"
"github.com/megaease/easegress/pkg/logger"
_ "github.com/megaease/easegress/pkg/object/httpserver"
"github.com/megaease/easegress/pkg/util/urlrule"
Expand Down
2 changes: 1 addition & 1 deletion pkg/object/mqttproxy/mqtt_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ import (

paho "github.com/eclipse/paho.mqtt.golang"
"github.com/eclipse/paho.mqtt.golang/packets"
_ "github.com/megaease/easegress/pkg/filter/mqttclientauth"
_ "github.com/megaease/easegress/pkg/filters/mqttclientauth"
"github.com/megaease/easegress/pkg/logger"
"github.com/megaease/easegress/pkg/object/pipeline"
"github.com/megaease/easegress/pkg/supervisor"
Expand Down
46 changes: 23 additions & 23 deletions pkg/registry/registry.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,29 +20,29 @@ package registry
import (

// Filters
_ "github.com/megaease/easegress/pkg/filter/apiaggregator"
_ "github.com/megaease/easegress/pkg/filter/bridge"
_ "github.com/megaease/easegress/pkg/filter/certextractor"
_ "github.com/megaease/easegress/pkg/filter/circuitbreaker"
_ "github.com/megaease/easegress/pkg/filter/connectcontrol"
_ "github.com/megaease/easegress/pkg/filter/corsadaptor"
_ "github.com/megaease/easegress/pkg/filter/fallback"
_ "github.com/megaease/easegress/pkg/filter/headerlookup"
_ "github.com/megaease/easegress/pkg/filter/headertojson"
_ "github.com/megaease/easegress/pkg/filter/kafka"
_ "github.com/megaease/easegress/pkg/filter/kafkabackend"
_ "github.com/megaease/easegress/pkg/filter/meshadaptor"
_ "github.com/megaease/easegress/pkg/filter/mock"
_ "github.com/megaease/easegress/pkg/filter/mqttclientauth"
_ "github.com/megaease/easegress/pkg/filter/proxy"
_ "github.com/megaease/easegress/pkg/filter/ratelimiter"
_ "github.com/megaease/easegress/pkg/filter/remotefilter"
_ "github.com/megaease/easegress/pkg/filter/requestadaptor"
_ "github.com/megaease/easegress/pkg/filter/responseadaptor"
_ "github.com/megaease/easegress/pkg/filter/retryer"
_ "github.com/megaease/easegress/pkg/filter/timelimiter"
_ "github.com/megaease/easegress/pkg/filter/validator"
_ "github.com/megaease/easegress/pkg/filter/wasmhost"
_ "github.com/megaease/easegress/pkg/filters/apiaggregator"
_ "github.com/megaease/easegress/pkg/filters/bridge"
_ "github.com/megaease/easegress/pkg/filters/certextractor"
_ "github.com/megaease/easegress/pkg/filters/circuitbreaker"
_ "github.com/megaease/easegress/pkg/filters/connectcontrol"
_ "github.com/megaease/easegress/pkg/filters/corsadaptor"
_ "github.com/megaease/easegress/pkg/filters/fallback"
_ "github.com/megaease/easegress/pkg/filters/headerlookup"
_ "github.com/megaease/easegress/pkg/filters/headertojson"
_ "github.com/megaease/easegress/pkg/filters/kafka"
_ "github.com/megaease/easegress/pkg/filters/kafkabackend"
_ "github.com/megaease/easegress/pkg/filters/meshadaptor"
_ "github.com/megaease/easegress/pkg/filters/mock"
_ "github.com/megaease/easegress/pkg/filters/mqttclientauth"
_ "github.com/megaease/easegress/pkg/filters/proxy"
_ "github.com/megaease/easegress/pkg/filters/ratelimiter"
_ "github.com/megaease/easegress/pkg/filters/remotefilter"
_ "github.com/megaease/easegress/pkg/filters/requestadaptor"
_ "github.com/megaease/easegress/pkg/filters/responseadaptor"
_ "github.com/megaease/easegress/pkg/filters/retryer"
_ "github.com/megaease/easegress/pkg/filters/timelimiter"
_ "github.com/megaease/easegress/pkg/filters/validator"
_ "github.com/megaease/easegress/pkg/filters/wasmhost"

// Objects
_ "github.com/megaease/easegress/pkg/object/autocertmanager"
Expand Down
2 changes: 1 addition & 1 deletion pkg/util/jmxtool/agent_controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (
"testing"
"time"

"github.com/megaease/easegress/pkg/filter/proxy"
"github.com/megaease/easegress/pkg/filters/proxy"
"github.com/megaease/easegress/pkg/logger"
"github.com/megaease/easegress/pkg/object/meshcontroller/spec"
)
Expand Down

0 comments on commit 854072c

Please sign in to comment.