From 9b7ecb7cc627d96c964209fe66fe3c8066cafa07 Mon Sep 17 00:00:00 2001 From: Tom Guinther <tguinther@gfxlabs.io> Date: Wed, 4 Sep 2024 14:33:43 -0400 Subject: [PATCH] fix --- lib/gat/handlers/otel_tracing/module.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/gat/handlers/otel_tracing/module.go b/lib/gat/handlers/otel_tracing/module.go index c6d7f9c0..c8d8e26c 100644 --- a/lib/gat/handlers/otel_tracing/module.go +++ b/lib/gat/handlers/otel_tracing/module.go @@ -127,7 +127,8 @@ func mapSamplerType(samplerType string) (sampler sdktrace.Sampler, err error) { case "always", "all", "on": sampler = sdktrace.AlwaysSample() default: - if val, err := strconv.ParseFloat(samplerType, 64); err == nil { + var val float64 + if val, err = strconv.ParseFloat(samplerType, 64); err == nil { // if not 0.0 -> 1.0, then assume that the representation is a % (0-100) if val > 1 { val = val / float64(100) -- GitLab