Updated

lib/context_request_middleware/sampling_handler / accept_all.rb

A
12 lines of codes
1 methods
0.0 complexity/method
2 churn
0.0 complexity
0 duplications
# frozen_string_literal: true module ContextRequestMiddleware module SamplingHandler # Simple sampling handler that samples every request. class AcceptAll def valid?(_request) true end end end end