sidekiq-unique-jobs 8.0.3 → 8.0.10

Sign up to get free protection for your applications and to get access to all the features.
Files changed (53) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +157 -1
  3. data/README.md +2 -4
  4. data/lib/sidekiq_unique_jobs/batch_delete.rb +1 -1
  5. data/lib/sidekiq_unique_jobs/changelog.rb +1 -1
  6. data/lib/sidekiq_unique_jobs/config.rb +4 -4
  7. data/lib/sidekiq_unique_jobs/constants.rb +1 -0
  8. data/lib/sidekiq_unique_jobs/digests.rb +46 -13
  9. data/lib/sidekiq_unique_jobs/job.rb +4 -4
  10. data/lib/sidekiq_unique_jobs/lock/base_lock.rb +1 -1
  11. data/lib/sidekiq_unique_jobs/lock/while_executing.rb +3 -0
  12. data/lib/sidekiq_unique_jobs/lock.rb +14 -11
  13. data/lib/sidekiq_unique_jobs/lock_config.rb +10 -4
  14. data/lib/sidekiq_unique_jobs/locksmith.rb +10 -5
  15. data/lib/sidekiq_unique_jobs/lua/delete.lua +6 -5
  16. data/lib/sidekiq_unique_jobs/lua/lock.lua +16 -7
  17. data/lib/sidekiq_unique_jobs/lua/queue.lua +9 -8
  18. data/lib/sidekiq_unique_jobs/lua/shared/_delete_from_queue.lua +10 -10
  19. data/lib/sidekiq_unique_jobs/lua/shared/_delete_from_sorted_set.lua +20 -10
  20. data/lib/sidekiq_unique_jobs/lua/unlock.lua +26 -18
  21. data/lib/sidekiq_unique_jobs/middleware/client.rb +1 -1
  22. data/lib/sidekiq_unique_jobs/middleware/server.rb +1 -1
  23. data/lib/sidekiq_unique_jobs/middleware.rb +5 -5
  24. data/lib/sidekiq_unique_jobs/on_conflict/replace.rb +1 -1
  25. data/lib/sidekiq_unique_jobs/on_conflict/reschedule.rb +5 -1
  26. data/lib/sidekiq_unique_jobs/orphans/manager.rb +8 -7
  27. data/lib/sidekiq_unique_jobs/orphans/reaper.rb +2 -1
  28. data/lib/sidekiq_unique_jobs/orphans/ruby_reaper.rb +26 -7
  29. data/lib/sidekiq_unique_jobs/redis/sorted_set.rb +12 -3
  30. data/lib/sidekiq_unique_jobs/script/caller.rb +1 -1
  31. data/lib/sidekiq_unique_jobs/script/client.rb +94 -0
  32. data/lib/sidekiq_unique_jobs/script/config.rb +68 -0
  33. data/lib/sidekiq_unique_jobs/script/dsl.rb +60 -0
  34. data/lib/sidekiq_unique_jobs/script/logging.rb +95 -0
  35. data/lib/sidekiq_unique_jobs/script/lua_error.rb +96 -0
  36. data/lib/sidekiq_unique_jobs/script/script.rb +75 -0
  37. data/lib/sidekiq_unique_jobs/script/scripts.rb +123 -0
  38. data/lib/sidekiq_unique_jobs/script/template.rb +41 -0
  39. data/lib/sidekiq_unique_jobs/script/timing.rb +35 -0
  40. data/lib/sidekiq_unique_jobs/script.rb +32 -1
  41. data/lib/sidekiq_unique_jobs/server.rb +2 -0
  42. data/lib/sidekiq_unique_jobs/sidekiq_unique_ext.rb +13 -35
  43. data/lib/sidekiq_unique_jobs/sidekiq_unique_jobs.rb +4 -4
  44. data/lib/sidekiq_unique_jobs/sidekiq_worker_methods.rb +3 -3
  45. data/lib/sidekiq_unique_jobs/testing.rb +4 -4
  46. data/lib/sidekiq_unique_jobs/version.rb +1 -1
  47. data/lib/sidekiq_unique_jobs/web/helpers.rb +3 -3
  48. data/lib/sidekiq_unique_jobs/web/views/changelogs.erb +1 -1
  49. data/lib/sidekiq_unique_jobs/web/views/lock.erb +2 -2
  50. data/lib/sidekiq_unique_jobs/web/views/locks.erb +1 -1
  51. data/lib/sidekiq_unique_jobs/web.rb +18 -17
  52. data/lib/sidekiq_unique_jobs.rb +5 -4
  53. metadata +12 -23
@@ -0,0 +1,96 @@
1
+ # frozen_string_literal: true
2
+
3
+ module SidekiqUniqueJobs
4
+ module Script
5
+ #
6
+ # Misconfiguration is raised when gem is misconfigured
7
+ #
8
+ # @author Mikael Henriksson <mikael@zoolutions.se>
9
+ #
10
+ class Misconfiguration < RuntimeError
11
+ end
12
+
13
+ # LuaError raised on errors in Lua scripts
14
+ #
15
+ # @author Mikael Henriksson <mikael@mhenrixon.com>
16
+ class LuaError < RuntimeError
17
+ # Reformats errors raised by redis representing failures while executing
18
+ # a lua script. The default errors have confusing messages and backtraces,
19
+ # and a type of +RuntimeError+. This class improves the message and
20
+ # modifies the backtrace to include the lua script itself in a reasonable
21
+ # way.
22
+
23
+ PATTERN = /ERR Error (compiling|running) script \(.*?\): .*?:(\d+): (.*)/.freeze
24
+ LIB_PATH = File.expand_path("..", __dir__).freeze
25
+ CONTEXT_LINE_NUMBER = 2
26
+
27
+ attr_reader :error, :file, :content
28
+
29
+ # Is this error one that should be reformatted?
30
+ #
31
+ # @param error [StandardError] the original error raised by redis
32
+ # @return [Boolean] is this an error that should be reformatted?
33
+ def self.intercepts?(error)
34
+ PATTERN.match?(error.message)
35
+ end
36
+
37
+ # Initialize a new {LuaError} from an existing redis error, adjusting
38
+ # the message and backtrace in the process.
39
+ #
40
+ # @param error [StandardError] the original error raised by redis
41
+ # @param script [Script] a DTO with information about the script
42
+ #
43
+ def initialize(error, script)
44
+ @error = error
45
+ @file = script.path
46
+ @content = script.source
47
+ @backtrace = @error.backtrace
48
+
49
+ @error.message.match(PATTERN) do |regexp_match|
50
+ line_number = regexp_match[2].to_i
51
+ message = regexp_match[3]
52
+ error_context = generate_error_context(content, line_number)
53
+
54
+ super("#{message}\n\n#{error_context}\n\n")
55
+ set_backtrace(generate_backtrace(file, line_number))
56
+ end
57
+ end
58
+
59
+ private
60
+
61
+ # :nocov:
62
+ def generate_error_context(content, line_number)
63
+ lines = content.lines.to_a
64
+ beginning_line_number = [1, line_number - CONTEXT_LINE_NUMBER].max
65
+ ending_line_number = [lines.count, line_number + CONTEXT_LINE_NUMBER].min
66
+ line_number_width = ending_line_number.to_s.length
67
+
68
+ (beginning_line_number..ending_line_number).map do |number|
69
+ indicator = (number == line_number) ? "=>" : " "
70
+ formatted_number = format("%#{line_number_width}d", number)
71
+ " #{indicator} #{formatted_number}: #{lines[number - 1]}"
72
+ end.join.chomp
73
+ end
74
+
75
+ # :nocov:
76
+ def generate_backtrace(file, line_number)
77
+ pre_gem = backtrace_before_entering_gem(@backtrace)
78
+ index_of_first_gem_line = (@backtrace.size - pre_gem.size - 1)
79
+
80
+ pre_gem.unshift(@backtrace[index_of_first_gem_line])
81
+ pre_gem.unshift("#{file}:#{line_number}")
82
+ pre_gem
83
+ end
84
+
85
+ # :nocov:
86
+ def backtrace_before_entering_gem(backtrace)
87
+ backtrace.reverse.take_while { |line| !line_from_gem(line) }.reverse
88
+ end
89
+
90
+ # :nocov:
91
+ def line_from_gem(line)
92
+ line.split(":").first.include?(LIB_PATH)
93
+ end
94
+ end
95
+ end
96
+ end
@@ -0,0 +1,75 @@
1
+ # frozen_string_literal: true
2
+
3
+ module SidekiqUniqueJobs
4
+ module Script
5
+ # Interface to dealing with .lua files
6
+ #
7
+ # @author Mikael Henriksson <mikael@mhenrixon.com>
8
+ class Script
9
+ def self.load(name, root_path, conn)
10
+ script = new(name: name, root_path: root_path)
11
+ script.load(conn)
12
+ end
13
+
14
+ #
15
+ # @!attribute [r] script_name
16
+ # @return [Symbol, String] the name of the script without extension
17
+ attr_reader :name
18
+ #
19
+ # @!attribute [r] script_path
20
+ # @return [String] the path to the script on disk
21
+ attr_reader :path
22
+ #
23
+ # @!attribute [r] root_path
24
+ # @return [Pathname]
25
+ attr_reader :root_path
26
+ #
27
+ # @!attribute [r] source
28
+ # @return [String] the source code of the lua script
29
+ attr_reader :source
30
+ #
31
+ # @!attribute [rw] sha
32
+ # @return [String] the sha of the script
33
+ attr_reader :sha
34
+ #
35
+ # @!attribute [rw] call_count
36
+ # @return [Integer] the number of times the script was called/executed
37
+ attr_reader :call_count
38
+
39
+ def initialize(name:, root_path:)
40
+ @name = name
41
+ @root_path = root_path
42
+ @path = root_path.join("#{name}.lua").to_s
43
+ @source = render_file
44
+ @sha = compiled_sha
45
+ @call_count = 0
46
+ end
47
+
48
+ def ==(other)
49
+ sha == compiled_sha && compiled_sha == other.sha
50
+ end
51
+
52
+ def increment_call_count
53
+ @call_count += 1
54
+ end
55
+
56
+ def changed?
57
+ compiled_sha != sha
58
+ end
59
+
60
+ def render_file
61
+ Template.new(root_path).render(path)
62
+ end
63
+
64
+ def compiled_sha
65
+ Digest::SHA1.hexdigest(source)
66
+ end
67
+
68
+ def load(conn)
69
+ @sha = conn.script(:load, source)
70
+
71
+ self
72
+ end
73
+ end
74
+ end
75
+ end
@@ -0,0 +1,123 @@
1
+ # frozen_string_literal: true
2
+
3
+ module SidekiqUniqueJobs
4
+ module Script
5
+ # Interface to dealing with .lua files
6
+ #
7
+ # @author Mikael Henriksson <mikael@mhenrixon.com>
8
+ class Scripts
9
+ #
10
+ # @return [Concurrent::Map] a map with configured script paths
11
+ SCRIPT_PATHS = Concurrent::Map.new
12
+
13
+ #
14
+ # Fetch a scripts configuration for path
15
+ #
16
+ # @param [Pathname] root_path the path to scripts
17
+ #
18
+ # @return [Scripts] a collection of scripts
19
+ #
20
+ def self.fetch(root_path)
21
+ if (scripts = SCRIPT_PATHS.get(root_path))
22
+ return scripts
23
+ end
24
+
25
+ create(root_path)
26
+ end
27
+
28
+ #
29
+ # Create a new scripts collection based on path
30
+ #
31
+ # @param [Pathname] root_path the path to scripts
32
+ #
33
+ # @return [Scripts] a collection of scripts
34
+ #
35
+ def self.create(root_path)
36
+ scripts = new(root_path)
37
+ store(scripts)
38
+ end
39
+
40
+ #
41
+ # Store the scripts collection in memory
42
+ #
43
+ # @param [Scripts] scripts the path to scripts
44
+ #
45
+ # @return [Scripts] the scripts instance that was stored
46
+ #
47
+ def self.store(scripts)
48
+ SCRIPT_PATHS.put(scripts.root_path, scripts)
49
+ scripts
50
+ end
51
+
52
+ #
53
+ # @!attribute [r] scripts
54
+ # @return [Concurrent::Map] a collection of loaded scripts
55
+ attr_reader :scripts
56
+
57
+ #
58
+ # @!attribute [r] root_path
59
+ # @return [Pathname] the path to the directory with lua scripts
60
+ attr_reader :root_path
61
+
62
+ def initialize(path)
63
+ raise ArgumentError, "path needs to be a Pathname" unless path.is_a?(Pathname)
64
+
65
+ @scripts = Concurrent::Map.new
66
+ @root_path = path
67
+ end
68
+
69
+ def fetch(name, conn)
70
+ if (script = scripts.get(name.to_sym))
71
+ return script
72
+ end
73
+
74
+ load(name, conn)
75
+ end
76
+
77
+ def load(name, conn)
78
+ script = Script.load(name, root_path, conn)
79
+ scripts.put(name.to_sym, script)
80
+
81
+ script
82
+ end
83
+
84
+ def delete(script)
85
+ if script.is_a?(Script)
86
+ scripts.delete(script.name)
87
+ else
88
+ scripts.delete(script.to_sym)
89
+ end
90
+ end
91
+
92
+ def kill(conn)
93
+ if conn.respond_to?(:namespace)
94
+ conn.redis.script(:kill)
95
+ else
96
+ conn.script(:kill)
97
+ end
98
+ end
99
+
100
+ #
101
+ # Execute a lua script with given name
102
+ #
103
+ # @note this method is recursive if we need to load a lua script
104
+ # that wasn't previously loaded.
105
+ #
106
+ # @param [Symbol] name the name of the script to execute
107
+ # @param [Redis] conn the redis connection to use for execution
108
+ # @param [Array<String>] keys script keys
109
+ # @param [Array<Object>] argv script arguments
110
+ #
111
+ # @return value from script
112
+ #
113
+ def execute(name, conn, keys: [], argv: [])
114
+ script = fetch(name, conn)
115
+ conn.evalsha(script.sha, keys, argv)
116
+ end
117
+
118
+ def count
119
+ scripts.keys.size
120
+ end
121
+ end
122
+ end
123
+ end
@@ -0,0 +1,41 @@
1
+ # frozen_string_literal: true
2
+
3
+ module SidekiqUniqueJobs
4
+ # Interface to dealing with .lua files
5
+ #
6
+ # @author Mikael Henriksson <mikael@mhenrixon.com>
7
+ module Script
8
+ #
9
+ # Class Template provides LUA script partial template rendering
10
+ #
11
+ # @author Mikael Henriksson <mikael@mhenrixon.com>
12
+ #
13
+ class Template
14
+ def initialize(script_path)
15
+ @script_path = script_path
16
+ end
17
+
18
+ #
19
+ # Renders a Lua script and includes any partials in that file
20
+ # all `<%= include_partial '' %>` replaced with the actual contents of the partial
21
+ #
22
+ # @param [Pathname] pathname the path to the
23
+ #
24
+ # @return [String] the rendered Luascript
25
+ #
26
+ def render(pathname)
27
+ @partial_templates ||= {}
28
+ ::ERB.new(File.read(pathname)).result(binding)
29
+ end
30
+
31
+ # helper method to include a lua partial within another lua script
32
+ #
33
+ def include_partial(relative_path)
34
+ return if @partial_templates.key?(relative_path)
35
+
36
+ @partial_templates[relative_path] = nil
37
+ render(Pathname.new("#{@script_path}/#{relative_path}"))
38
+ end
39
+ end
40
+ end
41
+ end
@@ -0,0 +1,35 @@
1
+ # frozen_string_literal: true
2
+
3
+ module SidekiqUniqueJobs
4
+ module Script
5
+ # Handles timing> of things
6
+ #
7
+ # @author Mikael Henriksson <mikael@mhenrixon.com>
8
+ module Timing
9
+ module_function
10
+
11
+ #
12
+ # Used for timing method calls
13
+ #
14
+ #
15
+ # @return [yield return, Float]
16
+ #
17
+ def timed
18
+ start_time = now
19
+
20
+ [yield, now - start_time]
21
+ end
22
+
23
+ #
24
+ # Returns a float representation of the current time.
25
+ # Either from Process or Time
26
+ #
27
+ #
28
+ # @return [Float]
29
+ #
30
+ def now
31
+ (Process.clock_gettime(Process::CLOCK_MONOTONIC) * 1000).to_i
32
+ end
33
+ end
34
+ end
35
+ end
@@ -1,15 +1,46 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require "sidekiq_unique_jobs/script/template"
4
+ require "sidekiq_unique_jobs/script/lua_error"
5
+ require "sidekiq_unique_jobs/script/script"
6
+ require "sidekiq_unique_jobs/script/scripts"
7
+ require "sidekiq_unique_jobs/script/config"
8
+ require "sidekiq_unique_jobs/script/timing"
9
+ require "sidekiq_unique_jobs/script/logging"
10
+ require "sidekiq_unique_jobs/script/dsl"
11
+ require "sidekiq_unique_jobs/script/client"
12
+
3
13
  module SidekiqUniqueJobs
4
14
  # Interface to dealing with .lua files
5
15
  #
6
16
  # @author Mikael Henriksson <mikael@mhenrixon.com>
7
17
  module Script
8
- include Brpoplpush::RedisScript::DSL
18
+ include SidekiqUniqueJobs::Script::DSL
9
19
 
10
20
  configure do |config|
11
21
  config.scripts_path = Pathname.new(__FILE__).dirname.join("lua")
12
22
  config.logger = Sidekiq.logger # TODO: This becomes a little weird
13
23
  end
24
+
25
+ #
26
+ # The current logger
27
+ #
28
+ #
29
+ # @return [Logger] the configured logger
30
+ #
31
+ def self.logger
32
+ config.logger
33
+ end
34
+
35
+ #
36
+ # Set a new logger
37
+ #
38
+ # @param [Logger] other another logger
39
+ #
40
+ # @return [Logger] the new logger
41
+ #
42
+ def self.logger=(other)
43
+ config.logger = other
44
+ end
14
45
  end
15
46
  end
@@ -5,6 +5,8 @@ module SidekiqUniqueJobs
5
5
  #
6
6
  # @author Mikael Henriksson <mikael@mhenrixon.com>
7
7
  class Server
8
+ #
9
+ # @return [Proc] returns a default death handler for the gem to cleanup dead locks
8
10
  DEATH_HANDLER = (lambda do |job, _ex|
9
11
  return unless (digest = job["lock_digest"])
10
12
 
@@ -68,46 +68,24 @@ module Sidekiq
68
68
  prepend UniqueExtension
69
69
  end
70
70
 
71
- if Sidekiq.const_defined?(:JobRecord)
72
- # See Sidekiq::Api
73
- class JobRecord
74
- #
75
- # Provides extensions for unlocking jobs that are removed and deleted
71
+ # See Sidekiq::Api
72
+ class JobRecord
73
+ #
74
+ # Provides extensions for unlocking jobs that are removed and deleted
75
+ #
76
+ # @author Mikael Henriksson <mikael@mhenrixon.com>
77
+ #
78
+ module UniqueExtension
76
79
  #
77
- # @author Mikael Henriksson <mikael@mhenrixon.com>
80
+ # Wraps the original method to ensure locks for the job are deleted
78
81
  #
79
- module UniqueExtension
80
- #
81
- # Wraps the original method to ensure locks for the job are deleted
82
- #
83
- def delete
84
- SidekiqUniqueJobs::Unlockable.delete!(item)
85
- super
86
- end
82
+ def delete
83
+ SidekiqUniqueJobs::Unlockable.delete!(item)
84
+ super
87
85
  end
88
-
89
- prepend UniqueExtension
90
86
  end
91
- else
92
- # See Sidekiq::Api
93
- class Job
94
- #
95
- # Provides extensions for unlocking jobs that are removed and deleted
96
- #
97
- # @author Mikael Henriksson <mikael@mhenrixon.com>
98
- #
99
- module UniqueExtension
100
- #
101
- # Wraps the original method to ensure locks for the job are deleted
102
- #
103
- def delete
104
- SidekiqUniqueJobs::Unlockable.delete!(item)
105
- super
106
- end
107
- end
108
87
 
109
- prepend UniqueExtension
110
- end
88
+ prepend UniqueExtension
111
89
  end
112
90
 
113
91
  # See Sidekiq::Api
@@ -186,7 +186,7 @@ module SidekiqUniqueJobs # rubocop:disable Metrics/ModuleLength
186
186
  yield config
187
187
  else
188
188
  options.each do |key, val|
189
- config.send("#{key}=", val)
189
+ config.send(:"#{key}=", val)
190
190
  end
191
191
  end
192
192
  end
@@ -250,9 +250,9 @@ module SidekiqUniqueJobs # rubocop:disable Metrics/ModuleLength
250
250
  # Attempt to constantize a string worker_class argument, always
251
251
  # failing back to the original argument when the constant can't be found
252
252
  #
253
- # @return [Sidekiq::Worker]
253
+ # @return [Sidekiq::Job]
254
254
  def constantize(str)
255
- return str.class if str.is_a?(Sidekiq::Worker) # sidekiq v6.x
255
+ return str.class if str.is_a?(Sidekiq::Job) # sidekiq v6.x
256
256
  return str unless str.is_a?(String)
257
257
  return Object.const_get(str) unless str.include?("::")
258
258
 
@@ -269,7 +269,7 @@ module SidekiqUniqueJobs # rubocop:disable Metrics/ModuleLength
269
269
  # Attempt to constantize a string worker_class argument, always
270
270
  # failing back to the original argument when the constant can't be found
271
271
  #
272
- # @return [Sidekiq::Worker, String]
272
+ # @return [Sidekiq::Job, String]
273
273
  def safe_constantize(str)
274
274
  constantize(str)
275
275
  rescue NameError => ex
@@ -1,13 +1,13 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module SidekiqUniqueJobs
4
- # Module with convenience methods for the Sidekiq::Worker class
4
+ # Module with convenience methods for the Sidekiq::Job class
5
5
  #
6
6
  # @author Mikael Henriksson <mikael@mhenrixon.com>
7
7
  module SidekiqWorkerMethods
8
8
  #
9
9
  # @!attribute [r] job_class
10
- # @return [Sidekiq::Worker] The Sidekiq::Worker implementation
10
+ # @return [Sidekiq::Job] The Sidekiq::Job implementation
11
11
  attr_reader :job_class
12
12
 
13
13
  # Avoids duplicating worker_class.respond_to? in multiple places
@@ -62,7 +62,7 @@ module SidekiqUniqueJobs
62
62
  # Attempt to constantize a string worker_class argument, always
63
63
  # failing back to the original argument when the constant can't be found
64
64
  #
65
- # @return [Sidekiq::Worker]
65
+ # @return [Sidekiq::Job]
66
66
  def job_class_constantize(klazz = @job_class)
67
67
  SidekiqUniqueJobs.safe_constantize(klazz)
68
68
  end
@@ -42,11 +42,11 @@ module Sidekiq
42
42
  end
43
43
 
44
44
  #
45
- # See Sidekiq::Worker in Sidekiq gem for more details
45
+ # See Sidekiq::Job in Sidekiq gem for more details
46
46
  #
47
47
  module Worker
48
48
  #
49
- # Adds class methods to Sidekiq::Worker
49
+ # Adds class methods to Sidekiq::Job
50
50
  #
51
51
  module ClassMethods
52
52
  #
@@ -110,14 +110,14 @@ module Sidekiq
110
110
  prepend Overrides
111
111
 
112
112
  #
113
- # Prepends methods to Sidekiq::Worker
113
+ # Prepends methods to Sidekiq::Job
114
114
  #
115
115
  module ClassMethods
116
116
  prepend Overrides::ClassMethods
117
117
  end
118
118
 
119
119
  #
120
- # Prepends singleton methods to Sidekiq::Worker
120
+ # Prepends singleton methods to Sidekiq::Job
121
121
  #
122
122
  module SignletonOverrides
123
123
  #
@@ -3,5 +3,5 @@
3
3
  module SidekiqUniqueJobs
4
4
  #
5
5
  # @return [String] the current SidekiqUniqueJobs version
6
- VERSION = "8.0.3"
6
+ VERSION = "8.0.10"
7
7
  end
@@ -133,7 +133,7 @@ module SidekiqUniqueJobs
133
133
  #
134
134
  # @return [String] a html safe string with relative time information
135
135
  #
136
- def relative_time(time)
136
+ def _relative_time(time)
137
137
  stamp = time.getutc.iso8601
138
138
  %(<time class="ltr" dir="ltr" title="#{stamp}" datetime="#{stamp}">#{time}</time>)
139
139
  end
@@ -145,12 +145,12 @@ module SidekiqUniqueJobs
145
145
  #
146
146
  # @return [String] a html safe string with relative time information
147
147
  #
148
- def safe_relative_time(time)
148
+ def _safe_relative_time(time)
149
149
  return unless time
150
150
 
151
151
  time = parse_time(time)
152
152
 
153
- relative_time(time)
153
+ _relative_time(time)
154
154
  end
155
155
 
156
156
  #
@@ -42,7 +42,7 @@
42
42
  <tbody>
43
43
  <% @changelogs.each do |changelog| %>
44
44
  <tr class="changelog-row">
45
- <td><%= safe_relative_time(changelog['time']) || "bogus" %></td>
45
+ <td><%= _safe_relative_time(changelog['time']) || "bogus" %></td>
46
46
  <td><%= changelog["digest"] %></td>
47
47
  <td><%= changelog["script"] %></td>
48
48
  <td><%= changelog["job_id"] %></td>
@@ -65,7 +65,7 @@
65
65
  <% @lock.locked_jids(with_values: true).each do |job_id, time| %>
66
66
  <tr>
67
67
  <td><%= job_id %></td>
68
- <td><%= safe_relative_time(time.to_f) %></td>
68
+ <td><%= _safe_relative_time(time.to_f) %></td>
69
69
  <td>
70
70
  <form action="<%= root_path %>locks/<%= @lock.key %>/jobs/<%= job_id %>/delete" method="get">
71
71
  <%= csrf_tag %>
@@ -92,7 +92,7 @@
92
92
  <tbody>
93
93
  <% @lock.changelogs.each do |entry| %>
94
94
  <tr>
95
- <td scope="row"><%= safe_relative_time(entry["time"].to_f) %></td>
95
+ <td scope="row"><%= _safe_relative_time(entry["time"].to_f) %></td>
96
96
  <td><%= entry["job_id"] %></td>
97
97
  <td><%= entry["message"] %></td>
98
98
  <td><%= entry["script"] %></td>
@@ -46,7 +46,7 @@
46
46
  <td><a href="<%= root_path %>locks/<%= lock.key %>"><%= lock.key %></a></td>
47
47
  <td><%= lock.info["lock"] %></td>
48
48
  <td><%= lock.locked.count %></td>
49
- <td><%= safe_relative_time(lock.created_at) %></td>
49
+ <td><%= _safe_relative_time(lock.created_at) %></td>
50
50
  </tr>
51
51
  </tbody>
52
52
  <% end %>