AUTH-1972: Deletes token lock file if backoff retry attempts exceeded and intercepts signals until lock is released

This commit is contained in:
Michael Borkenstein
2019-07-31 15:24:57 -05:00
parent 3c93d9b300
commit 9adbab96af
45 changed files with 1723 additions and 4160 deletions

View File

@@ -0,0 +1,16 @@
package require
// Assertions provides assertion methods around the
// TestingT interface.
type Assertions struct {
t TestingT
}
// New makes a new Assertions object for the specified TestingT.
func New(t TestingT) *Assertions {
return &Assertions{
t: t,
}
}
//go:generate go run ../_codegen/main.go -output-package=require -template=require_forward.go.tmpl -include-format-funcs