10000 feat(provisioner): propagate trace info by coryb · Pull Request #17166 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content

feat(provisioner): propagate trace info #17166

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

Merged
merged 4 commits into from
Apr 8, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update provisioner/terraform/otelenv_test.go
Co-authored-by: Spike Curtis <spike@spikecurtis.com>
  • Loading branch information
coryb and spikecurtis authored Apr 7, 2025
commit 0a48cc5d37487cb9c1df6309a5445ad396f715c8
2 changes: 1 addition & 1 deletion provisioner/terraform/otelenv_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type testIDGenerator struct{}

var _ sdktrace.IDGenerator = (*testIDGenerator)(nil)

func (testIDGenerator) NewIDs(ctx context.Context) (trace.TraceID, trace.SpanID) {
func (testIDGenerator) NewIDs(_ context.Context) (trace.TraceID, trace.SpanID) {
traceID, _ := trace.TraceIDFromHex("60d19e9e9abf2197c1d6d8f93e28ee2a")
spanID, _ := trace.SpanIDFromHex("a028bd951229a46f")
return traceID, spanID
Expand Down
0