Improved error handling.
This commit is contained in:
parent
8ec3f8acec
commit
0b26b5cdd5
1 changed files with 11 additions and 9 deletions
|
@ -65,16 +65,18 @@ module Session
|
|||
session_file = @path + '/' + client_id.to_s + '/session'
|
||||
data = nil
|
||||
return if !File.exist? session_file
|
||||
begin
|
||||
File.open( session_file, 'rb' ) { |file|
|
||||
file.flock( File::LOCK_EX )
|
||||
all = file.read
|
||||
file.flock( File::LOCK_UN )
|
||||
begin
|
||||
data = Marshal.load( all )
|
||||
rescue
|
||||
}
|
||||
rescue Exception => e
|
||||
puts "Error reading '#{session_file}':"
|
||||
puts e.inspect
|
||||
return
|
||||
end
|
||||
}
|
||||
return data
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue