I have the following code:
rescue Timeout::Error, StandardError => e
puts "Caught exception: #{e.message}".red
log.puts("#{e.backtrace}")
email_ids_all.each do |email_delete|
call= "/api/v2/emails/#{email_delete}/"
......
Before this rescue
piece I have defined log
and email_ids_all
. However, neither of these are recognized within the ruby script. If i do this:
rescue Timeout::Error, StandardError => e
File.open(rescuelogfile, 'w') do |log| #setup log to write response codes.
puts "Caught exception: #{e.message}".red
log.puts("#{e.backtrace}")
email_ids_all.each do |email_delete|
call= "/api/v2/emails/#{email_delete}/"
....
log
works fine, which makes sense. It would take a lot of writing to redefine the email_ids_all
array and other variables contained inside my rescue block.
Is there anyway to allow variables to be recognized inside the rescue? Basically my code is laid out like this:
begin
#some code
rescue
#above code
end
I am using ruby 1.9.3.
EDIT----
log
starts right after my begin
statement :
begin
File.open(logfile, 'w') do |log| #setup log to write response codes.
log.puts
works throughout the entire code except when an error is thrown, and then it runs the rescue script where log
is not available.
The same goes for email_ids_all
. There is an API call that generates about 10,000 emails and each of them is added to the array email_ids_all
. The script is receiving an error about halfway through generating these emails, and so I need the rescue script to delete all email ids in the email_ids_all
array. But for whatever reason, I get the following error:
FS_Test_Env.rb:762:in `block in <main>': undefined local variable or method `email_ids_all' for main:Object (NameError)
from FS_Test_Env.rb:759:in `open'
from FS_Test_Env.rb:759:in `rescue in <main>'
from FS_Test_Env.rb:7:in `<main>'
Any thoughts?
The scope of the block parameter
log
is limited to that block. This is the whole point of theopen
with block.Maybe you want to do:
Note that this does not cover errors when opening the logfile.
Regarding
email_ids_all
, I guess (!) you have the exception in a statement like:If yes, the problem is that the assignment happens only after the whole right-hand side is calculated. The var
email_ids_all
is not yet created when the exception happens.In order to access the elements created before the exception, you have to keep track of them, e.g.