We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06a16e5 commit e524b71Copy full SHA for e524b71
2 files changed
.circleci/config.yml
@@ -55,6 +55,6 @@ workflows:
55
- build
56
filters:
57
tags:
58
- only: /^v[0-9]+(\.[0-9]+){2}(-(rc|beta)[0-9]+)?/
+ only: /^v[0-9]+(\.[0-9]+){2}(-.+)?/
59
branches:
60
- ignore: /.*/
+ ignore: /.*/
cmd/kapacitord/main.go
@@ -43,6 +43,8 @@ func main() {
43
fmt.Fprintln(os.Stderr, err)
44
os.Exit(1)
45
}
46
+ runtime.SetBlockProfileRate(1)
47
+ runtime.SetMutexProfileFraction(1)
48
49
50
// Main represents the program execution.
0 commit comments