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

[testing] update datastore to use contexts with sharness failure #8564

Closed
wants to merge 40 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
378b416
WIP: update go-libp2p to v0.16.0
marten-seemann Oct 21, 2021
61d93d9
WIP relay config
marten-seemann Oct 19, 2021
3aa2cfd
refactor: apply config changes from review
lidel Oct 26, 2021
af01301
refactor: RelayTransport → Relay
lidel Oct 26, 2021
5a73fff
refactor: use *OptionalInteger in config
lidel Oct 27, 2021
c517a12
refactor: flatten RelayService limits
lidel Oct 27, 2021
023ffa7
docs(config): circuit relay v2
lidel Oct 28, 2021
2577549
docs(config): user relay before service
lidel Oct 28, 2021
8b2367a
docs(config): fix links and headers
lidel Oct 28, 2021
9294163
feat(config): Internal.Libp2pForceReachability
lidel Oct 28, 2021
7d05741
simplify processing of relay service opts
marten-seemann Oct 29, 2021
05744cc
use the ForceReachability option, update sharness test
marten-seemann Oct 29, 2021
f5cc4a6
refactor: switch to real flag in sharness
lidel Oct 29, 2021
93330d5
fix ForceReachability dependency injection
marten-seemann Oct 30, 2021
d9d3321
tmp chore: bump deps
aschmahmann Oct 27, 2021
0e7e5e1
use configuration option for static relays
marten-seemann Nov 13, 2021
dea5469
update sharness
marten-seemann Nov 14, 2021
4142b46
plumb through pseudoversions for context changes
guseggert Nov 15, 2021
925f7d7
fix StaticRelay config option
marten-seemann Nov 16, 2021
97993d8
update go-libp2p
marten-seemann Nov 16, 2021
86d41db
add support for setting automatic unixfs sharding threshold from the …
aschmahmann Oct 27, 2021
66e0f98
test: have tests use low cutoff for sharding to mimic old behavior
aschmahmann Oct 27, 2021
36c1eda
fix: omitempty UnixFSShardingSizeThreshold
lidel Oct 27, 2021
75a3db0
bump interop tests to branch with new go-ipfs sharding config option
aschmahmann Nov 10, 2021
2bed2a2
bump go-unixfs and go-mfs
aschmahmann Nov 12, 2021
9775022
change error message to match the current error
aschmahmann Nov 15, 2021
e0b6bb4
Add automatic sharding/unsharding tests (#8547)
schomatis Nov 16, 2021
5358b0d
plumb through pseudoversions for context changes
guseggert Nov 15, 2021
b526b28
update go-ipfs-config to v0.17.0, fix sharness
marten-seemann Nov 17, 2021
3267832
add docs for Swarm.RelayClient configuration
marten-seemann Nov 19, 2021
0eefe2c
Merge branch 'update-libp2p' into feat/update-datastore
aschmahmann Nov 22, 2021
4bdbe0a
Merge branch 'feat/unixfs-autosharding-with-config' into feat/update-…
aschmahmann Nov 22, 2021
0446293
update deps
aschmahmann Nov 22, 2021
b27cdd5
fix accidental change to blockstore.HashOnRead
aschmahmann Nov 22, 2021
3d112d4
fix graphsync accidental changes
aschmahmann Nov 22, 2021
c5eb1df
fix filestore commands to use contexts
aschmahmann Nov 22, 2021
9425976
update go-datastore to fix NullDatastore not fulfilling the Batching …
aschmahmann Nov 23, 2021
5a39843
chore: add dag-jose code to the cid command output
aschmahmann Nov 23, 2021
c2b80a1
isolate swarm debugging in ci
aschmahmann Nov 23, 2021
1beeec9
use LIBP2P_TCP_REUSEPORT instead of IPFS_REUSEPORT
marten-seemann Nov 23, 2021
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
fix graphsync accidental changes
aschmahmann committed Nov 22, 2021
commit 3d112d4e6a8ac7605ec827811a82675ad0ef4970
2 changes: 1 addition & 1 deletion core/node/graphsync.go
Original file line number Diff line number Diff line change
@@ -18,6 +18,6 @@ func Graphsync(lc fx.Lifecycle, mctx helpers.MetricsCtx, host libp2p.Host, bs bl

network := network.NewFromLibp2pHost(host)
return gsimpl.New(ctx, network,
storeutil.LinkSystemForBlockstore(ctx, bs),
storeutil.LinkSystemForBlockstore(bs),
)
}