We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c834fa9 commit b44fc5aCopy full SHA for b44fc5a
internal/workflowerrors/stack.go
@@ -13,7 +13,7 @@ const MaxStackDepth = 50
13
func stack(skip int) string {
14
// get stack
15
stack := make([]uintptr, MaxStackDepth)
16
- length := runtime.Callers(3+skip, stack[:])
+ length := runtime.Callers(2+skip, stack[:])
17
18
// trim
19
stack = stack[:length]
0 commit comments