# HG changeset patch # User Vincent Tondellier # Date 1370704027 -7200 # Node ID 169c73eb888169291cb4576fe0cf9598e0d86ff4 # Parent 300b902b5461460a01869ab03db92aac4e531b06 Store file content, not temporary file name diff -r 300b902b5461 -r 169c73eb8881 bin/gearman_decode_worker.pl --- a/bin/gearman_decode_worker.pl Sun Apr 07 00:02:00 2013 +0200 +++ b/bin/gearman_decode_worker.pl Sat Jun 08 17:07:07 2013 +0200 @@ -52,7 +52,7 @@ $pjson->{client_info} = $jsonin->{params}; my $uuidstr = $jsonin->{uuid}; - $storage->store_dump($uuidstr, $file); + $storage->store_dump($uuidstr, slurp $file); $storage->store_processed_data($uuidstr, $pjson); return $json->encode($pjson);