Has anything changed recently in the Azure WebJobs SDK around the omission of the AzureJobsDashboard connection string? Up until recently if this connection string was left out the WebJobs dashboard would not show / store any invocation logs etc. Now if this connection string is removed the WebJob will not start at all... Has anyone else noticed this or found a work around?
I do not want any queue messages logged in the invocation logs so would be interested to hear if anyone else has achieved something similar?
Thanks, Phil.
I faced the same problem, but it solved by:
AzureWebJobsDashboard
in config file to avoid the error, thennull
in code to stop logging.JobHostConfiguration config = new JobHostConfiguration();
config.DashboardConnectionString = null;
and that works with me
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With