Skip to content

Commit a7ec991

Browse files
committed
update tf with correct config
1 parent a3e333c commit a7ec991

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

application/CohortManager/compose.core.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,10 @@ services:
210210
- DemographicDataServiceURL=http://participant-demographic-data-service:7993/api/ParticipantDemographicDataService/
211211
- ExceptionManagementDataServiceURL=http://exception-management-data-service:7911/api/ExceptionManagementDataService/
212212
- GPPracticeDataServiceURL=http://localhost:7999/api/GPPracticeDataService/
213+
- CreateExceptionTopic=create-exception-topic
214+
- CreateExceptionSubscription=create-exception-sub
215+
- ServiceBusConnectionString_client_internal=Endpoint=sb://service-bus;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=SAS_KEY_VALUE;UseDevelopmentEmulator=true;
216+
213217

214218
update-exception:
215219
container_name: update-exception

application/CohortManager/src/Functions/ExceptionHandling/CreateException/CreateException.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public async Task<HttpResponseData> RunAsync([HttpTrigger(AuthorizationLevel.Ano
5353

5454
[Function("RunCreateException")]
5555
public async Task Run(
56-
[ServiceBusTrigger(topicName: "%CreateExceptionTopic%", subscriptionName: "%ExceptionSubscription%", Connection = "ServiceBusConnectionString_internal", AutoCompleteMessages = false)]
56+
[ServiceBusTrigger(topicName: "%CreateExceptionTopic%", subscriptionName: "%CreateExceptionSubscription%", Connection = "ServiceBusConnectionString_internal", AutoCompleteMessages = false)]
5757
ServiceBusReceivedMessage message,
5858
ServiceBusMessageActions messageActions)
5959
{

0 commit comments

Comments
 (0)