File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
ServiceControl.Audit.Persistence.RavenDB
ServiceControl.Persistence.RavenDB Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff 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" ) ;
Original file line number Diff line number Diff 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" ) ;
You can’t perform that action at this time.
0 commit comments