Ignore extra calls to #configure

This commit is contained in:
Ben Sigelman 2017-02-06 17:51:43 -08:00
Родитель 34daef720d
Коммит 74dca386b4
1 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@ -15,7 +15,13 @@ module LightStep
# Configure the GlobalTracer
# See {LightStep::Tracer#initialize}
def configure(**options)
raise ConfigurationError, 'Already configured' if configured
if configured
puts "LIGHTSTEP WARNING: Already configured. Stack trace:"
puts caller
puts
return
end
self.configured = true
super
end