Skip to content

Commit

Permalink
Clean up fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
johnml1135 committed Jan 11, 2024
1 parent fddf8f5 commit cc532fe
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 35 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ ServerCallContext context
public override async Task<HealthCheckResponse> HealthCheck(Empty request, ServerCallContext context)

Check failure on line 136 in src/SIL.Machine.AspNetCore/Services/ServalTranslationEngineServiceV1.cs

View workflow job for this annotation

GitHub Actions / Build on ubuntu-20.04

The type or namespace name 'HealthCheckResponse' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 136 in src/SIL.Machine.AspNetCore/Services/ServalTranslationEngineServiceV1.cs

View workflow job for this annotation

GitHub Actions / Build on ubuntu-20.04

'ServalTranslationEngineServiceV1.HealthCheck(Empty, ServerCallContext)': no suitable method found to override

Check failure on line 136 in src/SIL.Machine.AspNetCore/Services/ServalTranslationEngineServiceV1.cs

View workflow job for this annotation

GitHub Actions / Build on ubuntu-20.04

The type or namespace name 'HealthCheckResponse' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 136 in src/SIL.Machine.AspNetCore/Services/ServalTranslationEngineServiceV1.cs

View workflow job for this annotation

GitHub Actions / Build on ubuntu-20.04

'ServalTranslationEngineServiceV1.HealthCheck(Empty, ServerCallContext)': no suitable method found to override

Check failure on line 136 in src/SIL.Machine.AspNetCore/Services/ServalTranslationEngineServiceV1.cs

View workflow job for this annotation

GitHub Actions / Build on windows-latest

The type or namespace name 'HealthCheckResponse' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 136 in src/SIL.Machine.AspNetCore/Services/ServalTranslationEngineServiceV1.cs

View workflow job for this annotation

GitHub Actions / Build on windows-latest

'ServalTranslationEngineServiceV1.HealthCheck(Empty, ServerCallContext)': no suitable method found to override

Check failure on line 136 in src/SIL.Machine.AspNetCore/Services/ServalTranslationEngineServiceV1.cs

View workflow job for this annotation

GitHub Actions / Build on windows-latest

The type or namespace name 'HealthCheckResponse' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 136 in src/SIL.Machine.AspNetCore/Services/ServalTranslationEngineServiceV1.cs

View workflow job for this annotation

GitHub Actions / Build on windows-latest

'ServalTranslationEngineServiceV1.HealthCheck(Empty, ServerCallContext)': no suitable method found to override
{
HealthReport healthReport = await _healthCheckService.CheckHealthAsync();
HealthCheckResponse healthCheckResponse = WriteHealthCheckResponse.Generate(healthReport);
HealthCheckResponse healthCheckResponse = WriteGrpcHealthCheckResponse.Generate(healthReport);
return healthCheckResponse;
}

Expand Down
34 changes: 0 additions & 34 deletions src/SIL.Machine.AspNetCore/Utils/WriteHealthCheckResponse.cs

This file was deleted.

0 comments on commit cc532fe

Please sign in to comment.