Hey all. A friend of mine is running into an issue...
# adobe
m
Hey all. A friend of mine is running into an issue where occasionally implicit getters/setters are not working. This was documented 5 years ago here: https://tracker.adobe.com/#/view/CF-4203997 but closed due to "cannot reproduce" (I know, I know, but it was before my time here). My question is, are other folks encountering this? Or has everyone just moved to explicitly setting/getting their accessors? Is there a work-around available (perhaps an admin setting or java switch) he can use until we reopen this and get it fixed? Or is he doomed to have to refactor all his code by Monday lol.
e
I would look at his Tomcat server configuration first. The key here is "heavy load." It sounds like he has some requests that are timing out before the Java Que can pick them up and deliver them to the engine or his threads setting in tomcat is too low. Have him set MaxThreads in his connection setting to something absurdly, add a few zeros to or more to it. Ie MaxThreads = 8765309, Add the line "acceptCount" then make it 500, as the default is 100, which again, is far to low even for a normal server. Restart tomcat and monitor the results.
m
He was encountering this as a single dev, developing locally, with no one else hitting it. But potentially there's a lot of big boom code behind this. I'll pass this on. THANK YOU EDUB ❤️
e
No problem. I hope it helps.
❤️ 1