Skip to content

Commit ef6628b

Browse files
authored
Merge branch 'main' into New-Validation-Tests
2 parents 6846bec + 4fc87fe commit ef6628b

130 files changed

Lines changed: 1414 additions & 299 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/stage-3-build-images.yaml

Lines changed: 0 additions & 208 deletions
This file was deleted.

application/CohortManager/compose.cohort-distribution.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ services:
2424
- ASPNETCORE_URLS=http://*:7078
2525
- DtOsDatabaseConnectionString=Server=localhost,1433;Database=${DB_NAME};User Id=SA;Password=${PASSWORD};TrustServerCertificate=True
2626
- ExceptionFunctionURL=http://localhost:7070/api/CreateException
27+
- AcceptableLatencyThresholdMs=500
2728

2829
retrieve-cohort-request-audit:
2930
container_name: retrieve-cohort-request-audit
@@ -49,6 +50,7 @@ services:
4950
- BsSelectGpPracticeUrl=http://localhost:7998/api/BsSelectGpPracticeDataService/
5051
- CohortDistributionDataServiceUrl=http://localhost:7992/api/CohortDistributionDataService/
5152
- DtOsDatabaseConnectionString=Server=localhost,1433;Database=${DB_NAME};User Id=SA;Password=${PASSWORD};TrustServerCertificate=True
53+
- AcceptableLatencyThresholdMs=500
5254

5355
allocate-service-provider:
5456
container_name: allocate-service-provider
@@ -80,6 +82,7 @@ services:
8082
- CohortQueueNamePoison=cohort-distribution-queue-poison
8183
- IgnoreParticipantExceptions=false
8284
- IsExtractedToBSSelect=true
85+
- AcceptableLatencyThresholdMs=500
8386

8487
retrieve-participant-data:
8588
container_name: retrieve-participant-data
@@ -92,6 +95,7 @@ services:
9295
- ExceptionFunctionURL=http://localhost:7070/api/CreateException
9396
- ParticipantManagementUrl=http://localhost:7994/api/ParticipantManagementDataService
9497
- DemographicDataFunctionURL=http://localhost:7076/api/DemographicDataFunction
98+
- AcceptableLatencyThresholdMs=500
9599

96100
validate-cohort-distribution-record:
97101
container_name: validate-cohort-distribution-record
@@ -105,6 +109,7 @@ services:
105109
- ExceptionFunctionURL=http://localhost:7070/api/CreateException
106110
- DtOsDatabaseConnectionString=Server=localhost,1433;Database=${DB_NAME};User Id=SA;Password=${PASSWORD};TrustServerCertificate=True
107111
- CohortDistributionDataServiceURL=http://localhost:7992/api/CohortDistributionDataService/
112+
- AcceptableLatencyThresholdMs=500
108113

109114
remove-validation-exception-data:
110115
container_name: remove-validation-exception-data
@@ -129,4 +134,4 @@ services:
129134
environment:
130135
- ASPNETCORE_URLS=http://*:7992
131136
- DtOsDatabaseConnectionString=Server=localhost,1433;Database=${DB_NAME};User Id=SA;Password=${PASSWORD};TrustServerCertificate=True
132-
137+
- AcceptableLatencyThresholdMs = 500

application/CohortManager/compose.core.yaml

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,7 @@ services:
155155
- ExceptionFunctionURL=http://localhost:7070/api/CreateException
156156
- ParticipantManagementUrl=http://localhost:7994/api/ParticipantManagementDataService
157157
- AzureWebJobsStorage=UseDevelopmentStorage=true
158+
- AcceptableLatencyThresholdMs = 500
158159

159160
mark-participant-as-eligible:
160161
container_name: mark-participant-as-eligible
@@ -167,6 +168,7 @@ services:
167168
- DtOsDatabaseConnectionString=Server=localhost,1433;Database=${DB_NAME};User Id=SA;Password=${PASSWORD};TrustServerCertificate=True
168169
- ExceptionFunctionURL=http://localhost:7070/api/CreateException,
169170
- ParticipantManagementUrl=http://localhost:7994/api/ParticipantManagementDataService
171+
- AcceptableLatencyThresholdMs = 500
170172

171173
mark-participant-as-ineligible:
172174
container_name: mark-participant-as-ineligible
@@ -183,6 +185,7 @@ services:
183185
- ExceptionFunctionURL=http://localhost:7070/api/CreateException
184186
- FUNCTIONS_WORKER_RUNTIME=dotnet-isolated
185187
- ParticipantManagementUrl=http://localhost:7994/api/ParticipantManagementDataService
188+
- AcceptableLatencyThresholdMs = 500
186189

187190
update-participant-details:
188191
container_name: update-participant-details
@@ -196,6 +199,7 @@ services:
196199
- LookupValidationURL=http://localhost:7075/api/LookupValidation
197200
- ExceptionFunctionURL=http://localhost:7070/api/CreateException
198201
- ParticipantManagementUrl=http://localhost:7994/api/ParticipantManagementDataService
202+
- AcceptableLatencyThresholdMs = 500
199203

200204
create-exception:
201205
container_name: create-exception
@@ -223,6 +227,7 @@ services:
223227
- DemographicDataServiceURL=http://localhost:7993/api/ParticipantDemographicDataService/
224228
- ExceptionManagementDataServiceURL=http://localhost:7911/api/ExceptionManagementDataService/
225229
- GPPracticeDataServiceURL=http://localhost:7999/api/GPPracticeDataService/
230+
- AcceptableLatencyThresholdMs = 500
226231

227232
# Data Services
228233
bs-select-gp-practice-data-service:
@@ -234,7 +239,7 @@ services:
234239
environment:
235240
- ASPNETCORE_URLS=http://*:7998
236241
- DtOsDatabaseConnectionString=Server=localhost,1433;Database=${DB_NAME};User Id=SA;Password=${PASSWORD};TrustServerCertificate=True
237-
242+
- AcceptableLatencyThresholdMs = 500
238243
bs-select-outcode-data-service:
239244
container_name: bs-select-outcode-data-service
240245
network_mode: host
@@ -244,6 +249,7 @@ services:
244249
environment:
245250
- ASPNETCORE_URLS=http://*:7881
246251
- DtOsDatabaseConnectionString=Server=localhost,1433;Database=${DB_NAME};User Id=SA;Password=${PASSWORD};TrustServerCertificate=True
252+
- AcceptableLatencyThresholdMs = 500
247253

248254
language-code-data-service:
249255
container_name: language-code-data-service
@@ -254,6 +260,7 @@ services:
254260
environment:
255261
- ASPNETCORE_URLS=http://*:7997
256262
- DtOsDatabaseConnectionString=Server=localhost,1433;Database=${DB_NAME};User Id=SA;Password=${PASSWORD};TrustServerCertificate=True
263+
- AcceptableLatencyThresholdMs = 500
257264

258265
current-posting-data-service:
259266
container_name: current-posting-data-service
@@ -264,6 +271,7 @@ services:
264271
environment:
265272
- ASPNETCORE_URLS=http://*:7996
266273
- DtOsDatabaseConnectionString=Server=localhost,1433;Database=${DB_NAME};User Id=SA;Password=${PASSWORD};TrustServerCertificate=True
274+
- AcceptableLatencyThresholdMs = 500
267275

268276
excluded-smu-data-service:
269277
container_name: excluded-smu-data-service
@@ -274,6 +282,7 @@ services:
274282
environment:
275283
- ASPNETCORE_URLS=http://*:7995
276284
- DtOsDatabaseConnectionString=Server=localhost,1433;Database=${DB_NAME};User Id=SA;Password=${PASSWORD};TrustServerCertificate=True
285+
- AcceptableLatencyThresholdMs = 500
277286

278287
gene-code-lkp-data-service:
279288
container_name: gene-code-lkp-data-service
@@ -285,6 +294,7 @@ services:
285294
environment:
286295
- ASPNETCORE_URLS=http://*:7991
287296
- DtOsDatabaseConnectionString=Server=localhost,1433;Database=${DB_NAME};User Id=SA;Password=${PASSWORD};TrustServerCertificate=True
297+
- AcceptableLatencyThresholdMs = 500
288298

289299
higher-risk-referral-reason-lkp-data-service:
290300
container_name: higher-risk-referral-reason-lkp-data-service
@@ -296,6 +306,7 @@ services:
296306
environment:
297307
- ASPNETCORE_URLS=http://*:7992
298308
- DtOsDatabaseConnectionString=Server=localhost,1433;Database=${DB_NAME};User Id=SA;Password=${PASSWORD};TrustServerCertificate=True
309+
- AcceptableLatencyThresholdMs = 500
299310

300311
participant-demographic-data-service:
301312
container_name: participant-demographic-data-service
@@ -306,6 +317,7 @@ services:
306317
environment:
307318
- ASPNETCORE_URLS=http://*:7993
308319
- DtOsDatabaseConnectionString=Server=localhost,1433;Database=${DB_NAME};User Id=SA;Password=${PASSWORD};TrustServerCertificate=True
320+
- AcceptableLatencyThresholdMs = 500
309321

310322
participant-management-data-service:
311323
container_name: participant-management-data-service
@@ -400,6 +412,7 @@ services:
400412
- DemographicDataServiceURL=http://localhost:7993/api/ParticipantDemographicDataService
401413
- ExceptionFunctionURL=http://localhost:7070/api/CreateException
402414
- AzureWebJobsStorage=UseDevelopmentStorage=true
415+
- AcceptableLatencyThresholdMs = 500
403416

404417
gppractice-data-service:
405418
container_name: gppractice-data-service
@@ -410,6 +423,7 @@ services:
410423
environment:
411424
- ASPNETCORE_URLS=http://*:7910
412425
- DtOsDatabaseConnectionString=Server=localhost,1433;Database=${DB_NAME};User Id=SA;Password=${PASSWORD};TrustServerCertificate=True
426+
- AcceptableLatencyThresholdMs = 500
413427

414428
exception-management-data-service:
415429
container_name: exception-management-data-service
@@ -420,6 +434,7 @@ services:
420434
environment:
421435
- ASPNETCORE_URLS=http://*:7911
422436
- DtOsDatabaseConnectionString=Server=localhost,1433;Database=${DB_NAME};User Id=SA;Password=${PASSWORD};TrustServerCertificate=True
437+
- AcceptableLatencyThresholdMs = 500
423438

424439
bs-request-audit-data-service:
425440
container_name: bs-request-audit-data-service
@@ -430,6 +445,7 @@ services:
430445
environment:
431446
- ASPNETCORE_URLS=http://*:7989
432447
- DtOsDatabaseConnectionString=Server=localhost,1433;Database=${DB_NAME};User Id=SA;Password=${PASSWORD};TrustServerCertificate=True
448+
- AcceptableLatencyThresholdMs = 500
433449

434450

435451
screening-lkp-data-service:

0 commit comments

Comments
 (0)