Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
rfdonnelly committed Nov 3, 2023
1 parent 58b9514 commit ef4ed6d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/jobrnr/job/dispatch.rb
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def enqueue(*jobs)
end

def run
cummulative_completed_instances = []
cumulative_completed_instances = []

enqueue(*graph.roots)

Expand All @@ -74,7 +74,7 @@ def run
end

# process completed job instances
cummulative_completed_instances.push(*completed)
cumulative_completed_instances.push(*completed)
completed.each do |job_instance|
ui.post_instance(job_instance)
stats.post_instance(job_instance)
Expand Down Expand Up @@ -104,7 +104,7 @@ def run
plugins.post_application(
Jobrnr::PostApplicationMessage.new(
status_code,
cummulative_completed_instances,
cumulative_completed_instances,
stats,
options
)
Expand Down

0 comments on commit ef4ed6d

Please sign in to comment.