Skip to content

Commit

Permalink
Merge pull request #530 from Particular/no-null-installer-port
Browse files Browse the repository at this point in the history
Do not return null
  • Loading branch information
mikeminutillo authored Nov 19, 2019
2 parents ca1d003 + 5b6504d commit cb787c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/NServiceBus.SqlServer/SubscriptionTableInstaller.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public SubscriptionTableInstaller(ReadOnlySettings settings)

public Task Install(string identity)
{
return creator?.CreateIfNecessary();
return creator?.CreateIfNecessary() ?? TaskEx.CompletedTask;
}
}
}

0 comments on commit cb787c6

Please sign in to comment.