Skip to content

Commit a256dbc

Browse files
committed
fix syntax typo
1 parent 6cc8c0f commit a256dbc

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
kubernetes_template_rendering (0.2.1.pre.dc.4)
4+
kubernetes_template_rendering (0.2.1.pre.dc.5)
55
activesupport
66
invoca-utils
77
jsonnet

lib/kubernetes_template_rendering/template_directory_renderer.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def wait_if_max_forked(child_pids)
7373
end
7474
child_pids.delete_if do |pid|
7575
begin
76-
[_, exit_status] = Process.waitpid2(pid, Process::WNOHANG)
76+
_, exit_status = Process.waitpid2(pid, Process::WNOHANG)
7777
exit_status.success? or raise "Child process #{pid} failed"
7878
rescue Errno::ECHILD # No child processes
7979
true
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module KubernetesTemplateRendering
4-
VERSION = "0.2.1.pre.dc.4"
4+
VERSION = "0.2.1.pre.dc.5"
55
end

0 commit comments

Comments
 (0)