As of April 12th, you must go to Progress SupportLink to create new support cases or to access existing cases. Please, bookmark the SupportLink URL and use the new portal to contact the support team.
I have a similar problem to the one posted here: https://support.kinvey.com/discussion/200929117/completion-blocks-seem-getting-leaked
I have an app that runs a query every 60 seconds or so, and it seems to be leaking memory each time it’s run, even if the completion block isn’t doing anything.
I put some of the code in to a simplified gist here: https://gist.github.com/adammulligan/68a08f80d73b70b1c04e It’s not everything that makes it functional, but shows the important parts I think.
According to some quick Instruments.app inspections, it looks like the two main culprits of unreleased memory are:
adammulligan
I have a similar problem to the one posted here: https://support.kinvey.com/discussion/200929117/completion-blocks-seem-getting-leaked
I have an app that runs a query every 60 seconds or so, and it seems to be leaking memory each time it’s run, even if the completion block isn’t doing anything.
I put some of the code in to a simplified gist here: https://gist.github.com/adammulligan/68a08f80d73b70b1c04e It’s not everything that makes it functional, but shows the important parts I think.
According to some quick Instruments.app inspections, it looks like the two main culprits of unreleased memory are:
* `-[NSPlaceholderString initWithBytes:length:encoding:]`
* `-[KCS_SBJsonStreamParserAdapter parser:found:]`
I’d appreciate any insight as to what’s going on here!
Thanks!
Adam