I've seen and fixed my good share of bugs, but I have a special place for this one.
One good day the application stopped working on production servers, a good reboot would fix it, but it would fail again after a few days, no way to reproduce in any of the QA or DEV environments, So we enabled the DEBUG on production, just to see that the the app was blocking when it tried to generate the session id...
After looking into it for a few hours I found that java was calling /dev/random to generate the session ids, and that call was blocking... As you can imagine after some research we switch to /dev/urandom and it all worked.
My answer to the higher ups? Sorry Mr CEO, the machine just does not have enough entropy.
