You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
select {
case r := <-responseChannel:
resp.Success = false
resp.AppleResponse = ApplePushResponses[r[1]]
err = errors.New(resp.AppleResponse)
case <-timeoutChannel:
resp.Success = true
}
Does this set Success to true when the client times out?
I'm getting resp.Success = false and err = NO_ERRORS. I'm not sure how to interpret the results.
The text was updated successfully, but these errors were encountered:
The code in client.go says:
Does this set
Success
totrue
when the client times out?I'm getting
resp.Success
=false
anderr
=NO_ERRORS
. I'm not sure how to interpret the results.The text was updated successfully, but these errors were encountered: