From b322c7431d33865580314a529709d1a589a6d6c7 Mon Sep 17 00:00:00 2001 From: Christian Bruckmayer Date: Mon, 26 Feb 2018 14:03:43 +0100 Subject: [PATCH] [backend] Fix typo in clouduploader --- dist/clouduploader.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/clouduploader.rb b/dist/clouduploader.rb index 31bdbd9eebd..9719c963a27 100644 --- a/dist/clouduploader.rb +++ b/dist/clouduploader.rb @@ -72,7 +72,7 @@ def upload_image_to_ec2(image, data, jobid) end command << image - Open3.popen2e(command) do |_stdin, stdout_stderr, _wait_thr| + Open3.popen2e(command) do |_stdin, stdout_stderr, wait_thr| Signal.trap("TERM") { # We just omit the SIGTERM because otherwise we would not get logs from ec2uploadimg STDOUT.write("Received abort signal, waiting for ec2uploadimg to properly clean up.\n")