Skip to content

Commit

Permalink
nts
Browse files Browse the repository at this point in the history
Signed-off-by: sayedppqq <[email protected]>
  • Loading branch information
sayedppqq committed May 31, 2024
1 parent 9026ab2 commit 7608346
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -285,3 +285,8 @@ unlink_libsodium:
build_client:
cd cmd/daemonclient && \
go build -o ../../bin/walg-daemon-client -ldflags "-s -w -X main.buildDate=`date -u +%Y.%m.%d_%H:%M:%S` -X main.gitRevision=`git rev-parse --short HEAD` -X main.version=`git tag -l --points-at HEAD`"

#update: mongo_build
# docker build --tag walg:1.0 /home/sayed/go/src/kubedb.dev/wal-g/main/mongo
# docker tag walg:1.0 sayedppqq/walg:1.0
# docker push sayedppqq/walg:1.0
2 changes: 1 addition & 1 deletion internal/databases/mongo/shake/filter.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ type OplogFilterChain []OplogFilter
func (chain OplogFilterChain) IterateFilter(log *db.Oplog) bool {
for _, filter := range chain {
if filter.Filter(log) {
tracelog.InfoLogger.Printf("%v filter oplog[%v]", reflect.TypeOf(filter), log)
tracelog.DebugLogger.Printf("%v filter oplog[%v]", reflect.TypeOf(filter), log)
return true
}
}
Expand Down

0 comments on commit 7608346

Please sign in to comment.