Skip to content

Commit 2bca398

Browse files
authored
[Synapse] Fix an error not calling base.BeginProcessing (#27643)
1 parent 797bfc2 commit 2bca398

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/Synapse/Synapse/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+
* Fixed an error of not correctly setting the cmdlet context
2223

2324
## Version 3.2.0
2425
* Supported copyComputeScale and pipelineExternalComputeScale in `Set-AzSynapseIntegrationRuntime` Command

src/Synapse/Synapse/Commands/DataPlaneCommands/Artifact/WorkspacePackages/SynapseDataMovementCmdletBase.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ protected bool EnableMultiThread
9595

9696
protected override void BeginProcessing()
9797
{
98+
base.BeginProcessing();
9899
if (!AsJob.IsPresent)
99100
{
100101
DoBeginProcessing();

0 commit comments

Comments
 (0)