add circle.yml. disable js test

This commit is contained in:
Ethan Buchman
2016-07-06 17:01:20 -04:00
parent 732634112b
commit 49a67aee8a
4 changed files with 27 additions and 3 deletions

View File

@ -206,13 +206,11 @@ func (cli *grpcClient) finishAsyncCall(req *types.Request, res *types.Response)
go func() {
// Notify reqRes listener if set
if cb := reqres.GetCallback(); cb != nil {
fmt.Println("CALLING reqres CB")
cb(res)
}
// Notify client listener if set
if cli.resCb != nil {
fmt.Println("CALLING client CB")
cli.resCb(reqres.Request, res)
}
}()