Closed cyrilc-pro closed 2 years ago
Froggit-go uses github.com/ktrysmt/go-bitbucket but this library may, under some circumstances, kill the process using os.Exit(9).
os.Exit(9)
For instance, in webhooks.go:
webhooks.go
data, err := json.Marshal(body) if err != nil { pp.Println(err) os.Exit(9) }
Possible fixes:
Created https://github.com/ktrysmt/go-bitbucket/issues/174
Fix: upgrade to ktrysmt/go-bitbucket 0.9.32
Froggit-go uses github.com/ktrysmt/go-bitbucket but this library may, under some circumstances, kill the process using
os.Exit(9)
.For instance, in
webhooks.go
:Possible fixes: