diff --git a/backend/runner/proxy/proxy.go b/backend/runner/proxy/proxy.go index 6565554dea..53c1e6d812 100644 --- a/backend/runner/proxy/proxy.go +++ b/backend/runner/proxy/proxy.go @@ -138,7 +138,7 @@ func (r *Service) Call(ctx context.Context, req *connect.Request[ftlv1.CallReque callers, err := headers.GetCallers(req.Header()) if err != nil { observability.Calls.Request(ctx, req.Msg.Verb, start, optional.Some("failed to get callers")) - return nil, err + return nil, fmt.Errorf("could not get callers from headers: %w", err) } requestKey, ok, err := headers.GetRequestKey(req.Header())