1
0
mirror of https://github.com/cmur2/dyndnsd.git synced 2025-06-26 12:30:18 +02:00

gems: update rack-tracer to version 0.8.0

Since rack-tracer now supports OpenTracing.active_span we should start
using it as well and therefore do not need spanmanager gem anymore.

See: Update rack-tracer to version 0.8.0 (#16)
This commit is contained in:
depfu[bot]
2018-07-12 20:36:01 +00:00
committed by Christian Nicolai
parent 4f3e591f13
commit bd7c786c9c
3 changed files with 4 additions and 7 deletions

View File

@ -10,7 +10,6 @@ require 'metriks'
require 'metriks/reporter/graphite'
require 'opentracing'
require 'rack/tracer'
require 'spanmanager'
require 'dyndnsd/generator/bind'
require 'dyndnsd/updater/command_with_bind_zone'
@ -266,8 +265,6 @@ module Dyndnsd
host: host, port: port, service_name: service_name, flush_interval: 1
)
end
# always use SpanManager
OpenTracing.global_tracer = SpanManager::Tracer.new(OpenTracing.global_tracer)
end
private_class_method def self.setup_rack(config)