Cristian Diaconescu
Cristian Diaconescu

Reputation: 35701

Azure cloud service emulator - avoid restarting on breakpoint

When running an Azure cloud service instance locally in the emulator, if I spend too long while the code execution is paused (e.g. hit a breakpoint), the service will print 'unresponsive' error messages and will restart.

This is expected behaviour "at large", but is there a way to stop this from happening when running in the emulator?

Upvotes: 0

Views: 61

Answers (1)

Fei Han
Fei Han

Reputation: 27825

This is expected behaviour "at large", but is there a way to stop this from happening when running in the emulator?

Based on my test , if I stop at breakpoints for longer than a few minutes, which will make role state become unresponsive and role stop. We should avoid long stops at breakpoints.

enter image description here

I do not find a way to set/configure the Compute Emulator to prevent this behaviour from happening. You could give a feedback on this site for this issue.

Upvotes: 0

Related Questions