Skip to content

Commit

Permalink
Fixing ruby3 scheduler errors stemming from invalid ruby3 syntax in m…
Browse files Browse the repository at this point in the history
…ethod call
  • Loading branch information
dalvarado authored and xandroc committed Jun 16, 2022
1 parent 1f2456f commit edc3f52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/cloud_controller/clock/clock.rb
Expand Up @@ -55,7 +55,7 @@ def schedule_frequent_inline_job(name:, interval:, timeout:)
private

def schedule_job(job_opts, &block)
DistributedScheduler.new.schedule_periodic_job(job_opts, &block)
DistributedScheduler.new.schedule_periodic_job(**job_opts, &block)
end
end
end

0 comments on commit edc3f52

Please sign in to comment.