How to raise timeout error using koala gem for Facebook in Rails ?
if anybody knows, please let me know.
How to raise timeout error using koala gem for Facebook in Rails ?
if anybody knows, please let me know.
You can use ruby's Timeout module as follows:
require 'timeout'
begin
status = Timeout::timeout(5) do
@koala_api.get_connection 'me', :feed
end
rescue Timeout::Error
# do something on timeout
end
The best way to do that is:
Koala.http_service.http_options = {request: {open_timeout: 1, timeout: 1}}