Skip to content

Commit 6201d83

Browse files
author
Maddie Clayton
authored
Merge pull request Azure#8984 from HaoQian-MS/master
Add SsisProperties if NodeCount not null for managed ir
2 parents 1d4e2d9 + e532fbe commit 6201d83

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

src/DataFactory/DataFactoryV2/Changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
-->
2020

2121
## Upcoming Release
22+
* Add SsisProperties if NodeCount not null for managed integration runtime.
2223

2324
## Version 1.1.0
2425
* Updated ADF .Net SDK version to 3.0.2

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)