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

chore: merge release v1.14 to master #6234

Merged
merged 36 commits into from
Nov 28, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
faaf3e5
Merge pull request #6197 from filecoin-project/feat/market/import-dat…
LinZexiao Oct 19, 2023
e2b41a8
Merge pull request #6206 from filecoin-project/chore/cherry-pick-6197
LinZexiao Oct 31, 2023
fede8ab
chore: update to builtin-actors v12.0.0-rc.2
simlecode Nov 1, 2023
9baf77e
chore: fix lint
simlecode Nov 1, 2023
bbcd425
Merge pull request #6207 from filecoin-project/chore/update-builtin-a…
LinZexiao Nov 1, 2023
99529d8
fix: api: compute the effective gas cost with the correct base-fee
simlecode Nov 2, 2023
052a677
fix: api: compute gasUsedRatio based on max gas in the tipset
simlecode Nov 2, 2023
ad5a595
fix: sync: iterate over returned messages directly
simlecode Nov 2, 2023
95f61a0
chore: set mainnet upgrade epoch
simlecode Nov 2, 2023
88ed330
chore: fix lint
simlecode Nov 2, 2023
f3a5c63
Merge pull request #6209 from filecoin-project/chore/transport
LinZexiao Nov 2, 2023
daca0eb
chore: bump version & update changelog
simlecode Nov 1, 2023
36e6176
Merge pull request #6208 from filecoin-project/chore/bump-v1.14.0-rc4
LinZexiao Nov 2, 2023
5122342
fix: repeat append value
simlecode Nov 3, 2023
67e0dcd
chore: check error
simlecode Nov 3, 2023
bc969f0
chore: Change the info log to a debug log
simlecode Nov 6, 2023
0c62864
Merge pull request #6210 from filecoin-project/fix/repeat-append
LinZexiao Nov 7, 2023
10d4c25
fix: nv21fix migration: correctly upgrade system actor
simlecode Nov 9, 2023
2097550
Merge pull request #6215 from filecoin-project/fix/calibnet
LinZexiao Nov 9, 2023
8a7118f
chore: bump version to v1.14.0-rc5
simlecode Nov 9, 2023
773a69d
Merge pull request #6216 from filecoin-project/chore/bump-version
LinZexiao Nov 9, 2023
4da82a7
opt: migration: set premigration to 90 minute
simlecode Nov 9, 2023
c47fae6
Merge pull request #6217 from filecoin-project/opt/update-premigration
LinZexiao Nov 9, 2023
3edb637
fix: light-weight patch to fix calibrationnet again by removing move_…
simlecode Nov 16, 2023
205d6b8
Merge pull request #6223 from filecoin-project/fix/calibnet
LinZexiao Nov 17, 2023
1f3895e
chore: update deps
simlecode Nov 17, 2023
b595007
chore: bump version to v1.14.0-rc6
simlecode Nov 17, 2023
c1e31ca
Merge pull request #6225 from filecoin-project/chore/bump-v1.14.0-rc6
LinZexiao Nov 17, 2023
30f6c77
chore: update sophon-auth & lotus
simlecode Nov 23, 2023
5254d6c
chore: bump version to v1.14.0
simlecode Nov 23, 2023
35bd869
chore: use github.com/hashicorp/golang-lru/arc/v2
simlecode Nov 23, 2023
96e9d99
Merge pull request #6228 from filecoin-project/chore/bump-v1.14.0
LinZexiao Nov 23, 2023
42b4726
chore: add calibnet bootstrap node
simlecode Nov 23, 2023
e2f02fb
chore: update go-state-types
simlecode Nov 23, 2023
45058a7
Merge pull request #6230 from filecoin-project/chore/update-go-state-…
LinZexiao Nov 23, 2023
fa62111
Merge branch 'master' into chore/merge-release-v1.14
simlecode Nov 28, 2023
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
Prev Previous commit
Next Next commit
chore: Change the info log to a debug log
  • Loading branch information
simlecode committed Nov 6, 2023
commit bc969f0268348d5584c9dcdc57f40f1f84ba6f4a
2 changes: 1 addition & 1 deletion pkg/net/exchange/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ func (s *server) handleStream(stream inet.Stream) {
exchangeServerLog.Warnf("failed to read block sync request: %s", err)
return
}
exchangeServerLog.Infow("block sync request", "start", req.Head, "len", req.Length, "remote peer", stream.Conn().RemotePeer())
exchangeServerLog.Debugw("block sync request", "start", req.Head, "len", req.Length, "remote peer", stream.Conn().RemotePeer())

resp, err := s.processRequest(ctx, &req)
if err != nil {
Expand Down
2 changes: 1 addition & 1 deletion venus-component/libp2p/exchange/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ func (s *Server) HandleStream(stream inet.Stream) {
return
}

slog.Infow("block sync request", "start", req.Head, "len", req.Length)
slog.Debugw("block sync request", "start", req.Head, "len", req.Length)

resp, err := s.processRequest(ctx, &req)
if err != nil {
Expand Down
Loading