Remove spurious 'puts'
authorPeter Amstutz <peter.amstutz@curoverse.com>
Thu, 26 Jun 2014 19:13:37 +0000 (15:13 -0400)
committerPeter Amstutz <peter.amstutz@curoverse.com>
Thu, 26 Jun 2014 19:13:55 +0000 (15:13 -0400)
apps/workbench/app/controllers/actions_controller.rb

index cae7f16fd956d3ffc29ff6aa69d7131ff76302d7..9a76e9aed412522ffa14166e0b9aadbe1f8e8acf 100644 (file)
@@ -72,7 +72,6 @@ class ActionsController < ApplicationController
 
   def arv_normalize mt, *opts
     r = ""
-    puts "['arv-normalize', #{opts}]"
     IO.popen(['arv-normalize'] + opts, 'w+b') do |io|
       io.write mt
       io.close_write
@@ -145,8 +144,7 @@ class ActionsController < ApplicationController
     IO.popen([env, 'arv-put', '--raw'], 'w+b') do |io|
       io.write normalized_stripped
       io.close_write
-      while buf = io.read(2**20)
-
+      while buf = io.read(2**16)
       end
     end