Errors in log.

Options
OmegaGames
edited May 2014 in Photon Server
I'm getting some interesting errors that force a server to restart. Not sure what could be causing it.

http://pastebin.com/ZHuFG3jA

Comments

  • Marek
    Options
    OnStackOverflow() -> StackOverflowException
    The exception that is thrown when the execution stack overflows because it contains too many nested method calls. This class cannot be inherited.

    So it looks like you have uncontrolled infinite recursion somewhere.
  • OmegaGames
    Options
    Marek wrote:
    OnStackOverflow() -> StackOverflowException
    The exception that is thrown when the execution stack overflows because it contains too many nested method calls. This class cannot be inherited.

    So it looks like you have uncontrolled infinite recursion somewhere.

    Thanks for the response. I believe I located the issue. I believe I was poorly managing some locking which was causing this to occur. Removal of that locking seemed to have solved the issue.