Eugene Goldberg
Eugene Goldberg

Reputation: 15564

Azure functions runtime unable to start

Trying to deploy azure function to azure. Getting this error:

 The function runtime is unable to start. Microsoft.Azure.WebJobs.ServiceBus: Microsoft Azure WebJobs SDK ServiceBus connection string 
'Endpoint=sb://servicebusnamespace001968.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;[Hidden Credential]' is missing or empty.

What is the proper way to specify the connection string for azure deployment?

Upvotes: 0

Views: 368

Answers (1)

suziki
suziki

Reputation: 14111

I am no sure, but maybe you forget to add the AzureWebJobsStorage.

enter image description here

Is this what you want?

enter image description here

enter image description here

And don't forget to save the edit.

Upvotes: 2

Related Questions