Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

purgeIdleCellConnections only on slow connection

I'm facing a problem that appears only on slow connection (Gprs). I'm sending data using NSURLConnection and after getting the response i got :

purgeIdleCellConnections: found one to purge conn = 0x5e738e0

I searched on the internet but couldn't find something to help me. Any ideas ?

I'm gonna check again my memory management because it seems that it comes from a memory error but how to deal with it is another story.

Thanks for your help

like image 211
ophilbert Avatar asked Jul 04 '12 14:07

ophilbert


1 Answers

I encountered same message because sequential call of NSURLConnection sendSynchronousRequest method. In my case, first call was executed normally but second one was cause of purgeIdleCellConnections: found one to purge conn. Your code might have same behavior as mine.

like image 116
conecon Avatar answered Sep 22 '22 18:09

conecon