Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

change lz4 import path #1

Open
wants to merge 1 commit into
base: ciscom31_sarama_1_22_1
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
change lz4 import path
sebastien-rosset committed Jul 8, 2020
commit 1e30337ba91fbbde4584b6bdd590fbc35db9c680
2 changes: 1 addition & 1 deletion compress.go
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ import (
"sync"

"github.com/eapache/go-xerial-snappy"
"github.com/CiscoM31/lz4"
"github.com/pierrec/lz4"
)

var (
2 changes: 1 addition & 1 deletion decompress.go
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@ import (
"sync"

"github.com/eapache/go-xerial-snappy"
"github.com/CiscoM31/lz4"
"github.com/pierrec/lz4"
)

var (
4 changes: 4 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -16,3 +16,7 @@ require (
golang.org/x/crypto v0.0.0-20190404164418-38d8ce5564a5 // indirect
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3
)

replace (
github.com/pierrec/lz4 => github.com/CiscoM31/lz4 master
)