Skip to content

Commit 36fd29e

Browse files
authored
fix
1 parent 9120804 commit 36fd29e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/ServiceControl.Audit.Persistence.RavenDB/LicenseStatusCheck.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public static async Task WaitForLicenseOrThrow(DatabaseConfiguration configurati
1919
while (!licenseCorrectlySetup)
2020
{
2121
var httpResponse = await client.GetAsync("license/status", cancellationToken);
22-
var licenseStatus = await httpResponse.Content.ReadFromJsonAsync<LicenseStatusFragment>
22+
var licenseStatus = await httpResponse.Content.ReadFromJsonAsync<LicenseStatusFragment>();
2323
if (licenseStatus.Expired)
2424
{
2525
throw new NotSupportedException("The current RavenDB license is expired. Please, contact support");

src/ServiceControl.Persistence.RavenDB/LicenseStatusCheck.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public static async Task WaitForLicenseOrThrow(RavenPersisterSettings configurat
1919
while (!licenseCorrectlySetup)
2020
{
2121
var httpResponse = await client.GetAsync("license/status", cancellationToken);
22-
var licenseStatus = await httpResponse.Content.ReadFromJsonAsync<LicenseStatusFragment>
22+
var licenseStatus = await httpResponse.Content.ReadFromJsonAsync<LicenseStatusFragment>();
2323
if (licenseStatus.Expired)
2424
{
2525
throw new NotSupportedException("The current RavenDB license is expired. Please, contact support");

0 commit comments

Comments
 (0)