Skip to content

Commit 6af5a3f

Browse files
committed
non-production: explicitly exit 0 from child processes
1 parent 1aa8902 commit 6af5a3f

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.0)
4+
kubernetes_template_rendering (0.2.1.pre.dc.1)
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
@@ -40,7 +40,7 @@ def render(args)
4040
else
4141
# this is the child
4242
render_set(args, resource_set)
43-
Kernel.exit! # skip at_exit handlers since parent will run those
43+
Kernel.exit!(0) # skip at_exit handlers since parent will run those
4444
end
4545
else
4646
render_set(args, resource_set)
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.0"
4+
VERSION = "0.2.1.pre.dc.1"
55
end

0 commit comments

Comments
 (0)