File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed
samples/fhir-empi-integration/empi-connector/EMPIShim Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
<PropertyGroup >
3
- <TargetFramework >net6 .0</TargetFramework >
3
+ <TargetFramework >net8 .0</TargetFramework >
4
4
<AzureFunctionsVersion >v4</AzureFunctionsVersion >
5
5
<_FunctionsSkipCleanOutput >true</_FunctionsSkipCleanOutput >
6
6
</PropertyGroup >
7
7
<ItemGroup >
8
- <PackageReference Include =" Azure.Identity" Version =" 1.11 .0" />
8
+ <PackageReference Include =" Azure.Identity" Version =" 1.12 .0" />
9
9
<PackageReference Include =" Azure.Search.Documents" Version =" 11.5.1" />
10
10
<PackageReference Include =" Microsoft.Azure.WebJobs.Extensions.EventHubs" Version =" 6.2.0" />
11
- <PackageReference Include =" Microsoft.Identity.Client" Version =" 4.60 .3" />
12
- <PackageReference Include =" Microsoft.NET.Sdk.Functions" Version =" 4.3 .0" />
11
+ <PackageReference Include =" Microsoft.Identity.Client" Version =" 4.61 .3" />
12
+ <PackageReference Include =" Microsoft.NET.Sdk.Functions" Version =" 4.4 .0" />
13
13
<PackageReference Include =" Polly" Version =" 8.3.1" />
14
14
<PackageReference Include =" System.IdentityModel.Tokens.Jwt" Version =" 7.5.0" />
15
15
</ItemGroup >
Original file line number Diff line number Diff line change @@ -30,8 +30,9 @@ public static class EMPIUpdates
30
30
private static IEMPIProvider _provider = Utils . EMPIProviderGetInstance ( Utils . GetEnvironmentVariable ( "EMPIProvider" , "EMPIShim.NoOpEMPIProvider" ) ) ;
31
31
32
32
[ FunctionName ( "EMPIUpdates" ) ]
33
- public static async Task Run ( [ EventHubTrigger ( "empievents " , Connection = "evconnect" ) ] EventData [ ] events , ILogger log )
33
+ public static async Task Run ( [ EventHubTrigger ( "empieventhub " , Connection = "evconnect" ) ] EventData [ ] events , ILogger log )
34
34
{
35
+ log . LogInformation ( $ "Empi Updates triggered") ;
35
36
var exceptions = new List < Exception > ( ) ;
36
37
37
38
foreach ( EventData eventData in events )
You can’t perform that action at this time.
0 commit comments