Skip to content

Commit

Permalink
Now handling if connection string is missing (#286)
Browse files Browse the repository at this point in the history
  • Loading branch information
csharpfritz authored Nov 7, 2023
1 parent 40f4592 commit 02816e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TagzApp.Providers.AzureQueue/StartAzureQueue.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ protected override void MapConfigurationValues(ProviderConfiguration providerCon

var config = providerConfiguration.ConfigurationSettings;

if (config != null)
if (config != null && config.Any(kv => kv.Key.Equals("QueueConnectionString", StringComparison.InvariantCultureIgnoreCase)))
{
_azureQueueConfiguration = new()
{
Expand Down

0 comments on commit 02816e4

Please sign in to comment.