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 @@ -17,7 +17,7 @@ public static async Task WaitForLicenseOrThrow(DatabaseConfiguration configurati
1717 var attempts = 0 ;
1818 while ( ! licenseCorrectlySetup )
1919 {
20- var httpResponse = await client . GetAsync ( "/ license/status" , cancellationToken ) ;
20+ var httpResponse = await client . GetAsync ( "license/status" , cancellationToken ) ;
2121 var responseJsonString = await httpResponse . Content . ReadAsStringAsync ( cancellationToken ) ;
2222 var licenseStatus = JsonSerializer . Deserialize < LicenseStatusFragment > ( responseJsonString ) ;
2323 if ( licenseStatus . Expired )
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ public static async Task WaitForLicenseOrThrow(RavenPersisterSettings configurat
1717 var attempts = 0 ;
1818 while ( ! licenseCorrectlySetup )
1919 {
20- var httpResponse = await client . GetAsync ( "/ license/status" , cancellationToken ) ;
20+ var httpResponse = await client . GetAsync ( "license/status" , cancellationToken ) ;
2121 var responseJsonString = await httpResponse . Content . ReadAsStringAsync ( cancellationToken ) ;
2222 var licenseStatus = JsonSerializer . Deserialize < LicenseStatusFragment > ( responseJsonString ) ;
2323 if ( licenseStatus . Expired )
You can’t perform that action at this time.
0 commit comments