-
Notifications
You must be signed in to change notification settings - Fork 62
Open
Labels
questionFurther information is requestedFurther information is requested
Description
the definition in the source code about Value's type in "github.com/pingcap/failpoint/failpoint.go"
// Value represents value that retrieved from failpoint terms.
// It can be used as following types:
// 1. val.(int) // GO_FAILPOINTS="failpoint-name=return(1)"
// 2. val.(string) // GO_FAILPOINTS="failpoint-name=return('1')"
// 3. val.(bool) // GO_FAILPOINTS="failpoint-name=return(true)"
Value interface{}
but in my code
failpoint.Inject("demoPanic", func(val failpoint.Value) {
fmt.Println(val)
fmt.Println(val.(string))
}
and start my progrom with cmd:
GO_FAILPOINTS="mypackagename/demoPanic=return('100')" ./beego-backend
An exception was thrown
[panic.go:522] Handler crashed with error interface conversion: failpoint.Value is bool, not string ···
Metadata
Metadata
Assignees
Labels
questionFurther information is requestedFurther information is requested