-
Notifications
You must be signed in to change notification settings - Fork 13
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
Reintroduce flight records #265
Conversation
* POC: Flight recording of slow requests (above 500ms) * go mods * config & fixes * lint
@@ -1,13 +1,13 @@ | |||
# syntax=docker/dockerfile:1 | |||
|
|||
ARG GO_VERSION="1.21" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Proposed change: bump version from go1.21 to go1.22
@@ -1,8 +1,8 @@ | |||
# syntax=docker/dockerfile:1 | |||
# See README.md#Debugging for more information | |||
|
|||
ARG GO_VERSION="1.21" | |||
ARG RUNNER_IMAGE="golang:1.21" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Proposed change: bump version from go1.21 to go1.22
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Excellent - thank you.
I will need to update some configs in our internal repositories. I will merge this PR once that is complete.
Committed a small nit to changelog. Thank you again @deividaspetraitis |
This PR proposes a fix for docker image build process that was failing previously ( please see #254 ).
Failure was caused by a wrong Go version since
runtime/trace: flight recording
package was introduced ingo1.22
as an experental feature and was not yet available atgo1.21
version, please see https://go-review.googlesource.com/c/exp/+/550257Proposed change is to bump version from
go1.21
togo1.22
in Docker images.Also this PR reintroduces flight records.