class Sentry::Transaction::SpanRecorder
def add(span)
def add(span) if @spans.count < @max_length @spans << span end end
def initialize(max_length)
def initialize(max_length) @max_length = max_length @spans = [] end
def add(span) if @spans.count < @max_length @spans << span end end
def initialize(max_length) @max_length = max_length @spans = [] end