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 ObjectiveResource
Hey just a heads up to anyone running a rails app in development mode
Connection.m defines a fairly short time out on requests (5 seconds)
which I was hitting pretty easily on my local dev webserver for search
queries and that sort of thing.
You can modify
static float timeoutInterval = 5.0;
in Connection.m to increase for development.
The default logging output doesn't really indicate the reason for the
request failure might be worth outputting the connectionDelegate.error
in the response log as well.
I happen to be processing all of my objective resource requests in the
background so this doesn't affect user experience in my app.
Ryan Daigle
unread,
Feb 27, 2009, 8:02:43 PM2/27/09
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 objectiv...@googlegroups.com
Good point - we should probably make that value more accessible AND up the default amount a significant amount since it's quite feasible that people will expect to connect over an EDGE network.