Merge remote-tracking branch 'origin/master' into feat/lpdeal-cache

This commit is contained in:
Łukasz Magiera
2024-03-17 17:31:26 +01:00
134 changed files with 6328 additions and 1977 deletions
+1 -1
View File
@@ -84,7 +84,7 @@ func New(hosts []string, username, password, database, port string, itestID ITes
}
}
schema := "lotus"
schema := "curio"
if itest != "" {
schema = "itest_" + itest
}
@@ -0,0 +1,42 @@
INSERT INTO harmony_config (title, config) VALUES
('post', '
[Subsystems]
EnableWindowPost = true
EnableWinningPost = true
'),
('gui', '
[Subsystems]
EnableWebGui = true
'),
('seal', '
[Subsystems]
EnableSealSDR = true
EnableSealSDRTrees = true
EnableSendPrecommitMsg = true
EnablePoRepProof = true
EnableSendCommitMsg = true
EnableMoveStorage = true
'),
('seal-gpu', '
[Subsystems]
EnableSealSDRTrees = true
EnableSendPrecommitMsg = true
'),
('seal-snark', '
[Subsystems]
EnablePoRepProof = true
EnableSendCommitMsg = true
'),
('sdr', '
[Subsystems]
EnableSealSDR = true
'),
('storage', '
[Subsystems]
EnableMoveStorage = true
')
ON CONFLICT (title) DO NOTHING; -- SPs may have these names defined already.
+1 -1
View File
@@ -131,7 +131,7 @@ func getResources() (res Resources, err error) {
}
}
if found > 1 {
logger.Warn("lotus-provider's defaults are for running alone. Use task maximums or CGroups.")
logger.Warn("curio's defaults are for running alone. Use task maximums or CGroups.")
}
}