Azure worker role hangs on publish with error in Diagnostics -


after updating azure sdk 2.6 (from 2.5.1) have not been able publish azure worker role instance. had been working 2.5.1 sdk. worker process fails start in azure , hangs status of:

busy (waiting role start... application startup tasks running. [2015- 06-02t23:27:56z] last role error: exit code - 0, exit time - [2015/06/02, 23:27:20.218])

the worker process make use of azure diagnostics - configured in service definition file like:

<imports>   <import modulename="remoteaccess" />   <import modulename="remoteforwarder" />   <import modulename="diagnostics"/> </imports> 

and see error in event log of worker vm:

system.unauthorizedaccessexception: access path 'diagnosticplugin-shutdownevent' denied.     @ system.io.__error.winioerror(int32 errorcode, string maybefullpath)     @ system.threading.eventwaithandle..ctor(boolean initialstate, eventresetmode mode, string name)     @ microsoft.windowsazure.plugins.launcher.program.mainimpl(string[] args)     @ microsoft.windowsazure.plugins.launcher.program.main(string[] args) 

i'm not sure how correct issue. ideas?

azure diagnostics module should no longer present in either sdk 2.5 or 2.6 of azure deployments. azure diagnostics in sdk2.5+ world configured extension. (diagnostics v1.3 version)

here more information: https://azure.microsoft.com/en-us/documentation/articles/cloud-services-dotnet-diagnostics/


Comments

Popular posts from this blog

python - TypeError: start must be a integer -

c# - DevExpress RepositoryItemComboBox BackColor property ignored -

django - Creating multiple model instances in DRF3 -