Skip to content

Fix gpc nameing #25

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

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
10 changes: 10 additions & 0 deletions build
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,16 @@ gen_version

echo "Building metad ..."
mkdir -p bin

go mod init

# fix google.golang.org/grpc/naming: module google.golang.org/grpc@latest found (v1.37.0), but does not contain package google.golang.org/grpc/naming
# https://github.com/yunify/metad/issues/24
go mod edit -replace google.golang.org/[email protected]=google.golang.org/[email protected]

go mod vendor
go mod tidy

go build -o $OUTPUT .

revert_version
2 changes: 1 addition & 1 deletion log/log.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
"strings"
"time"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
)

type LogFormatter struct {
Expand Down