Skip to content

Commit

Permalink
fix linter and update Rocksdb version
Browse files Browse the repository at this point in the history
  • Loading branch information
melekes committed Aug 22, 2024
1 parent c9f482b commit 5f5d48a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ run:
linters:
disable-all: true
enable:
- exportloopref
- copyloopvar
- errcheck
- gci
- goconst
Expand Down
2 changes: 1 addition & 1 deletion common_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -186,5 +186,5 @@ func int642Bytes(i int64) []byte {
}

func bytes2Int64(buf []byte) int64 {
return int64(binary.BigEndian.Uint64(buf))
return int64(binary.BigEndian.Uint64(buf)) //nolint:gosec
}
2 changes: 1 addition & 1 deletion tools/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ RUN apt update \
libleveldb-dev libleveldb1d

FROM build AS install
ARG ROCKSDB=8.11.3
ARG ROCKSDB=9.3.1

# Install Rocksdb
RUN \
Expand Down

0 comments on commit 5f5d48a

Please sign in to comment.