Skip to content

Commit 0d67c25

Browse files
committed
Add SsisProperties if NodeCount not null for managed ir
1 parent 084c498 commit 0d67c25

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

ChangeLog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
#### Az.DataFactory
3030
* Updated ADF .Net SDK version to 3.0.2
3131
* Updated Set-AzDataFactoryV2 cmdlet with extra parameters for RepoConfiguration related settings.
32+
* Add SsisProperties if NodeCount not null for managed integration runtime.
3233

3334
#### Az.Resources
3435
* Improve handling of providers for 'Get-AzResource' when providing '-ResourceId' or '-ResourceGroupName', '-Name' and '-ResourceType' parameters

src/DataFactory/DataFactoryV2/Changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
## Version 1.1.0
2424
* Updated ADF .Net SDK version to 3.0.2
2525
* Updated Set-AzDataFactoryV2 cmdlet with extra parameters for RepoConfiguration related settings.
26+
* Add SsisProperties if NodeCount not null for managed integration runtime.
2627

2728
## Version 1.0.2
2829
* Updated ADF .Net SDK version to 3.0.1

src/DataFactory/DataFactoryV2/IntegrationRuntimes/SetAzureDataFactoryIntegrationRuntimeCommand.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -527,6 +527,11 @@ private void HandleManagedIntegrationRuntime(ManagedIntegrationRuntime integrati
527527
}
528528

529529
integrationRuntime.ComputeProperties.NumberOfNodes = NodeCount;
530+
531+
if (integrationRuntime.SsisProperties == null)
532+
{
533+
integrationRuntime.SsisProperties = new IntegrationRuntimeSsisProperties();
534+
}
530535
}
531536

532537
if (MaxParallelExecutionsPerNode.HasValue)

0 commit comments

Comments
 (0)