We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
for _, extension := range extensions { if extensionHeader, ok := extension.(extensionHeaders); ok { if _err := extensionHeader(headers, isObs); err != nil { doLog(LEVEL_INFO, fmt.Sprintf("set header with error: %v", _err)) } } else { doLog(LEVEL_INFO, "Unsupported extensionOptions") } }
Note the error returned by extensionHeader(headers, isObs) is captured by _err while not used for comparison.
The text was updated successfully, but these errors were encountered:
最新go sdk版本已经修复此bug。
Sorry, something went wrong.
No branches or pull requests
Note the error returned by extensionHeader(headers, isObs) is captured by _err while not used for comparison.
The text was updated successfully, but these errors were encountered: