Merge pull request #3147 from filecoin-project/feat/fsm-seal-limits

fsm: Config for limiting max sealing sectors
This commit is contained in:
Łukasz Magiera
2020-08-18 21:54:41 +02:00
committed by GitHub
21 changed files with 358 additions and 65 deletions
+2 -3
View File
@@ -13,7 +13,7 @@ import (
)
var pprofCmd = &cli.Command{
Name: "pprof",
Name: "pprof",
Hidden: true,
Subcommands: []*cli.Command{
PprofGoroutines,
@@ -42,7 +42,7 @@ var PprofGoroutines = &cli.Command{
return err
}
addr = "http://" + addr + "/debug/pprof/goroutine?debug=2"
addr = "http://" + addr + "/debug/pprof/goroutine?debug=2"
r, err := http.Get(addr)
if err != nil {
@@ -56,4 +56,3 @@ var PprofGoroutines = &cli.Command{
return r.Body.Close()
},
}