-
Notifications
You must be signed in to change notification settings - Fork 117
New issue
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
Error when installing package #77
Comments
Running into the exact same issue |
Hi @Cosaquee , For the moment, rebuilding X-Ray Go SDK with Travis is broken due to different reason, however, the current X-Ray Go SDK release is stable. Best, |
Updates aws/aws-xray-sdk-go#77 Updates evalphobia/logrus_sentry#74 Go 1.12 has updated the behaviour of runtime.FuncForPC so that it behaves as it did in Go 1.11 and earlier. This allows errors.Frame to return to a uintptr representing the PC +1 of the caller. This will fix the build breakages of projects that were tracking HEAD of this package. Signed-off-by: Dave Cheney <[email protected]>
I can confirm that after pkg/errors#193 our CI is green. I still need to deploy functions that are using this package but it seems to be ok. |
In our CI we can see this error:
Running the same command inside official Go container for versions
We are not using Glide for dependencies management so we are running plain
go get
commands to download all the packages. As we can see there is an error when downloading this package.The current master of https://github.com/pkg/errors is breaking the code above. This commit has changed type of frame from
uintptr
toruntime.Frame
.The master is currently broken on Travis also, but I'm not sure if it is related to this issue.
I'm not sure how to handle this situation without rebuilding
aws-xray-sdk-go
with thepkg/errors
version https://github.com/pkg/errors/releases/tag/v0.8.1The text was updated successfully, but these errors were encountered: