You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to mini_fb
I'm finding that a number of requests seem to stall or timeout on
facebook. Is anyone else seeing this and, if so, how are you handling
it? Is there a way to t a timeout with mini_FB to catch a facebook
stall and act?
Travis Reeder
unread,
Feb 8, 2011, 12:01:14 AM2/8/11
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to min...@googlegroups.com
Wrap it in a timeout block:
require 'timeout'
status = Timeout::timeout(5) {
# Something that should be interrupted if it takes too much time...
}