Skip to content

Commit

Permalink
Merge branch 'test'
Browse files Browse the repository at this point in the history
  • Loading branch information
james-hollinger committed Jun 24, 2024
2 parents 57c1d71 + 52594a4 commit 19905a4
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion backend/webapi/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public void ConfigureServices(IServiceCollection services)
services.AddHealthChecks()
.AddApplicationStatus(tags: new[] { HealthCheckTag.Liveness.Value })
.AddCheck<BackgroundWorkerHealthCheck>("PlrStatusUpdateSchedulingService", tags: new[] { HealthCheckTag.BackgroundServices.Value })
.AddNpgSql(config.ConnectionStrings.PidpDatabase, tags: new[] { HealthCheckTag.Readiness.Value })
.AddDbContextCheck<PidpDbContext>(tags: new[] { HealthCheckTag.Readiness.Value })
.AddRabbitMQ(new Uri(config.RabbitMQ.HostAddress), tags: new[] { HealthCheckTag.Readiness.Value });

services.AddSwaggerGen(options =>
Expand Down
1 change: 0 additions & 1 deletion backend/webapi/pidp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AspNetCore.HealthChecks.ApplicationStatus" Version="8.0.1" />
<PackageReference Include="AspNetCore.HealthChecks.NpgSql" Version="8.0.1" />
<PackageReference Include="AspNetCore.HealthChecks.RabbitMQ" Version="8.0.1" />
<PackageReference Include="AutoMapper" Version="13.0.1" />
<PackageReference Include="DomainResult" Version="3.2.0" />
Expand Down

0 comments on commit 19905a4

Please sign in to comment.