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
I can happen when your request is too long (larger than the gorilla buffer, 8192 bytes I think) and the request is split. In that case the server doesn't see the request ID so in the response it doesn't send one.
The current solution is to increase the request buffer, or make your request smaller.
resp.RequestID = j["requestId"].(string)
maybe cause panic,panic message:interface conversion: interface {} is nil, not string
The text was updated successfully, but these errors were encountered: