Sha256: 79bdf41546f03b02a605a2d59447a6f86addbd1547c4521768de7812c13f9a48
Contents?: true
Size: 628 Bytes
Versions: 14
Compression:
Stored size: 628 Bytes
Contents
require 'socket' require 'sidekiq/exception_handler' require 'sidekiq/core_ext' module Sidekiq ## # This module is part of Sidekiq core and not intended for extensions. # module Util include ExceptionHandler EXPIRY = 60 * 60 * 24 def watchdog(last_words) yield rescue Exception => ex handle_exception(ex, { :context => last_words }) raise ex end def logger Sidekiq.logger end def redis(&block) Sidekiq.redis(&block) end def process_id @@process_id ||= SecureRandom.hex end def hostname Socket.gethostname end end end
Version data entries
14 entries across 14 versions & 1 rubygems