Reputation: 577
using Azure SDK 1.4 I have a simple worker role in dev fabric, its not getting beyond busy state - I get "start role failed for one or more roles".
When I debug, the debugger never reaches WorkerRole.OnStart()
why would this be? how can I troubleshoot this?
Upvotes: 1
Views: 1767
Reputation: 66882
I think the most likely reason for this is either:
My approach for debugging it would be:
Run() { while(true) {} }
I've not seen many problems like this when deploying to the dev fabric, but I've seen lots of them when deploying to Azure (and they take a long time to solve just because of the slow deployment cycle time).
Good luck
Upvotes: 1