remove deals concurrency

This commit is contained in:
Anton Evangelatov 2021-04-27 16:29:12 +02:00
parent a9e4a0d22b
commit 0304bebf20
3 changed files with 10 additions and 2 deletions

View File

@ -45,7 +45,7 @@
[[groups]]
id = "miners"
[groups.resources]
memory = "4096Mi"
memory = "8192Mi"
cpu = "1000m"
[groups.instances]
count = 1

View File

@ -75,7 +75,9 @@ func dealsE2E(t *testkit.TestEnvironment) error {
// give some time to the miner, otherwise, we get errors like:
// deal errored deal failed: (State=26) error calling node: publishing deal: GasEstimateMessageGas
// error: estimating gas used: message execution failed: exit 19, reason: failed to lock balance: failed to lock client funds: not enough balance to lock for addr t0102: escrow balance 0 < locked 0 + required 640297000 (RetCode=19)
time.Sleep(50 * time.Second)
time.Sleep(40 * time.Second)
time.Sleep(time.Duration(t.GlobalSeq) * 5 * time.Second)
// generate 1600 bytes of random data
data := make([]byte, 5000000)

View File

@ -22,6 +22,12 @@ func init() {
_ = log.SetLogLevel("stats", "WARN")
_ = log.SetLogLevel("dht/RtRefreshManager", "ERROR") // noisy
_ = log.SetLogLevel("bitswap", "ERROR") // noisy
_ = log.SetLogLevel("badgerbs", "ERROR") // noisy
_ = log.SetLogLevel("sub", "ERROR") // noisy
_ = log.SetLogLevel("pubsub", "ERROR") // noisy
_ = log.SetLogLevel("chain", "ERROR") // noisy
_ = log.SetLogLevel("chainstore", "ERROR") // noisy
_ = log.SetLogLevel("basichost", "ERROR") // noisy
_ = os.Setenv("BELLMAN_NO_GPU", "1")