-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
upgrade lotus-soup
testplans and reduce deals concurrency to a single miner
#6122
Conversation
time.Sleep(50 * time.Second) | ||
time.Sleep(40 * time.Second) | ||
|
||
time.Sleep(time.Duration(t.GlobalSeq) * 5 * time.Second) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The idea here is that we give 5sec. in-between of each deal from various clients, which is certainly more than 1 block time.
build_base_image = "iptestground/oni-buildbase:v13-lotus" | ||
runtime_image = "iptestground/oni-runtime:v8-debug" | ||
build_base_image = "iptestground/oni-buildbase:v14-lotus" | ||
runtime_image = "iptestground/oni-runtime:v9-debug" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've upgraded docker images with latest lotus
and lotus-miner
binaries (aliased to lll
and lm
within the images), so that we can debug deadlocked devnets, when a deal ends up in the StorageDealAwaitingPreCommit
state.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thx!
This PR is bumping up Go to 1.16.3 for all docker images used in Testground test plans.
It is also reduce concurrency for deals towards a single miner, until we fix the underlying issues with deals being blocked in
StorageDealAwaitingPreCommit
stage.