You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -565,7 +565,7 @@ Here's an example of what a parameterization template might look like:
565
565
Here's an explanation of how the preceding template is constructed, broken down by resource type.
566
566
567
567
#### Pipelines
568
-
568
+
569
569
* Any property in the path `activities/typeProperties/waitTimeInSeconds` is parameterized. Any activity in a pipeline that has a code-level property named `waitTimeInSeconds` (for example, the `Wait` activity) is parameterized as a number, with a default name. But it won't have a default value in the Resource Manager template. It will be a mandatory input during the Resource Manager deployment.
570
570
* Similarly, a property called `headers` (for example, in a `Web` activity) is parameterized with type `object` (JObject). It has a default value, which is the same value as that of the source factory.
571
571
@@ -777,7 +777,7 @@ The following example shows how to add a single value to the default parameteriz
777
777
"database": "=",
778
778
"serviceEndpoint": "=",
779
779
"batchUri": "=",
780
-
"poolName": "=",
780
+
"poolName": "=",
781
781
"databaseName": "=",
782
782
"systemNumber": "=",
783
783
"server": "=",
@@ -831,25 +831,25 @@ If you don't have Git configured, you can access the linked templates via **Expo
831
831
832
832
If you deploy a factory to production and realize there's a bug that needs to be fixed right away, but you can't deploy the current collaboration branch, you might need to deploy a hotfix. This approach is as known as quick-fix engineering or QFE.
833
833
834
-
1.In Azure DevOps, go to the release that was deployed to production. Find the last commit that was deployed.
834
+
1.In Azure DevOps, go to the release that was deployed to production. Find the last commit that was deployed.
835
835
836
-
2.From the commit message, get the commit ID of the collaboration branch.
836
+
2.From the commit message, get the commit ID of the collaboration branch.
837
837
838
-
3.Create a new hotfix branch from that commit.
838
+
3.Create a new hotfix branch from that commit.
839
839
840
-
4.Go to the Azure Data Factory UX and switch to the hotfix branch.
840
+
4.Go to the Azure Data Factory UX and switch to the hotfix branch.
841
841
842
-
5.By using the Azure Data Factory UX, fix the bug. Test your changes.
842
+
5.By using the Azure Data Factory UX, fix the bug. Test your changes.
843
843
844
-
6.After the fix is verified, select **Export ARM Template** to get the hotfix Resource Manager template.
844
+
6.After the fix is verified, select **Export ARM Template** to get the hotfix Resource Manager template.
845
845
846
-
7.Manually check this build into the adf_publish branch.
846
+
7.Manually check this build into the adf_publish branch.
847
847
848
-
8.If you've configured your release pipeline to automatically trigger based on adf_publish check-ins, a new release will start automatically. Otherwise, manually queue a release.
848
+
8.If you've configured your release pipeline to automatically trigger based on adf_publish check-ins, a new release will start automatically. Otherwise, manually queue a release.
849
849
850
-
9.Deploy the hotfix release to the test and production factories. This release contains the previous production payload plus the fix that you made in step 5.
850
+
9.Deploy the hotfix release to the test and production factories. This release contains the previous production payload plus the fix that you made in step 5.
851
851
852
-
10.Add the changes from the hotfix to the development branch so that later releases won't include the same bug.
852
+
10.Add the changes from the hotfix to the development branch so that later releases won't include the same bug.
0 commit comments