Flowdock
method

determine_jitter_for_delay

Importance_0
v6.1.3.1 - Show latest stable - 0 notes - Class: Exceptions
determine_jitter_for_delay(delay, jitter) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activejob/lib/active_job/exceptions.rb, line 152
      def determine_jitter_for_delay(delay, jitter)
        return 0.0 if jitter.zero?
        Kernel.rand * delay * jitter
      end
Register or log in to add new notes.