Skip to content

Commit

Permalink
feat(plugin/venom): add kafka executor from venom 0.22.0 (#3368)
Browse files Browse the repository at this point in the history
Signed-off-by: Yvonnick Esnault <yvonnick.esnault@corp.ovh.com>
  • Loading branch information
yesnault committed Sep 28, 2018
1 parent 79ab195 commit 1b6ddbe
Show file tree
Hide file tree
Showing 14 changed files with 2,035 additions and 4 deletions.
13 changes: 10 additions & 3 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@

[[constraint]]
name = "github.com/ovh/venom"
version = "0.21.3"
version = "0.22.0"

[prune]
non-go = true
Expand Down
2 changes: 2 additions & 0 deletions contrib/grpcplugins/action/venom/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import (
"github.com/ovh/venom/executors/exec"
"github.com/ovh/venom/executors/http"
"github.com/ovh/venom/executors/imap"
"github.com/ovh/venom/executors/kafka"
"github.com/ovh/venom/executors/ovhapi"
"github.com/ovh/venom/executors/readfile"
"github.com/ovh/venom/executors/redis"
Expand Down Expand Up @@ -80,6 +81,7 @@ func (actPlugin *venomActionPlugin) Run(ctx context.Context, q *actionplugin.Act
v.RegisterExecutor(imap.Name, imap.New())
v.RegisterExecutor(ovhapi.Name, ovhapi.New())
v.RegisterExecutor(readfile.Name, readfile.New())
v.RegisterExecutor(kafka.Name, kafka.New())
v.RegisterExecutor(redis.Name, redis.New())
v.RegisterExecutor(smtp.Name, smtp.New())
v.RegisterExecutor(ssh.Name, ssh.New())
Expand Down
22 changes: 22 additions & 0 deletions vendor/github.com/bsm/sarama-cluster/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

170 changes: 170 additions & 0 deletions vendor/github.com/bsm/sarama-cluster/balancer.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

50 changes: 50 additions & 0 deletions vendor/github.com/bsm/sarama-cluster/client.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 25 additions & 0 deletions vendor/github.com/bsm/sarama-cluster/cluster.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 1b6ddbe

Please sign in to comment.