summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Kozak <spag@golwen.net>2013-07-01 12:54:16 +0200
committerPeter Kozak <spag@golwen.net>2013-07-01 12:54:16 +0200
commit7a42f972e8790b04754be6e636e1028fc3d5d70f (patch)
tree71f449ccd6f15422717de3ac24f87d5e888ddd79
parentf36147ff329fd1db4a9b9c89e08c5076fd41b659 (diff)
Revert "exception handling"
This reverts commit f36147ff329fd1db4a9b9c89e08c5076fd41b659.
-rw-r--r--app/controllers/trigger_controller.rb14
1 files changed, 2 insertions, 12 deletions
diff --git a/app/controllers/trigger_controller.rb b/app/controllers/trigger_controller.rb
index 290a1fc..3dbb2a5 100644
--- a/app/controllers/trigger_controller.rb
+++ b/app/controllers/trigger_controller.rb
@@ -135,18 +135,8 @@ class TriggerController < ApplicationController
working_path, tiff_file = File.split(fax_document.tiff)
if fax_document.store_dir != working_path
- begin
- FileUtils.mkdir(fax_document.store_dir)
- rescue => e
- logger.error "PDF fax directory not created: #{fax_document.store_dir} => #{e.inspect}"
- end
-
- begin
- FileUtils.mv(fax_document.tiff, fax_document.store_dir)
- rescue => e
- logger.error "PDF fax files not moved: #{fax_document.tiff} => #{e.inspect}"
- end
-
+ FileUtils.mkdir(fax_document.store_dir)
+ FileUtils.mv(fax_document.tiff, fax_document.store_dir)
fax_document.tiff = "#{fax_document.store_dir}/#{tiff_file}"
end