From c290dd51011b5f8e156ed4af2f6107cf4309aa48 Mon Sep 17 00:00:00 2001 From: Tom Clegg Date: Thu, 12 Jun 2014 15:00:13 -0400 Subject: [PATCH] 2755: Preserve blob signatures in manifest_text passed to collections.create. --- sdk/cli/bin/crunch-job | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdk/cli/bin/crunch-job b/sdk/cli/bin/crunch-job index 167d3ddbe9..628fea8796 100755 --- a/sdk/cli/bin/crunch-job +++ b/sdk/cli/bin/crunch-job @@ -830,9 +830,9 @@ if ($collated_output) } push(@manifest_lines, join(" ", @words)); } - my $manifest_text = join("", @manifest_lines); + my $stripped_manifest_text = join("", @manifest_lines); my $output = $arv->{'collections'}->{'create'}->execute('collection' => { - 'uuid' => md5_hex($manifest_text), + 'uuid' => md5_hex($stripped_manifest_text), 'manifest_text' => $manifest_text, }); $Job->update_attributes('output' => $output->{uuid}); -- 2.30.2