Skip to content

Commit 2b713c0

Browse files
committed
peer review feedback incorporated
1 parent 1afd05e commit 2b713c0

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

articles/automation/automation-runbook-execution.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ Your runbooks can use self-signed certificates, which are not signed by a certif
122122

123123
## Jobs
124124

125-
Azure Automation supports an environment to run jobs from the same Automation account. A single runbook can have many jobs running at one time. The more jobs you run at the same time, the more often they can be dispatched to the same sandbox. A maximum of 10 jobs can run in a sandbox. Sandbox would be removed when no jobs are executing in it, hence it should not be used to save files.
125+
Azure Automation supports an environment to run jobs from the same Automation account. A single runbook can have many jobs running at one time. The more jobs you run at the same time, the more often they can be dispatched to the same sandbox. A maximum of 10 jobs can run in a sandbox. A sandbox will be removed when no jobs are executing in it; hence, it shouldn't be used to save files.
126126

127127
Jobs running in the same sandbox process can affect each other. One example is running the [Disconnect-AzAccount](/powershell/module/az.accounts/disconnect-azaccount) cmdlet. Execution of this cmdlet disconnects each runbook job in the shared sandbox process. For an example of working with this scenario, see [Prevent concurrent jobs](manage-runbooks.md#prevent-concurrent-jobs).
128128

articles/automation/automation-runbook-types.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ The following are the current limitations and known issues with PowerShell runbo
8787
- PowerShell 7.x currently does not support signed runbooks.
8888
- Source control integration doesn't support PowerShell 7.1 (preview) Also, PowerShell 7.1 (preview) runbooks in source control gets created in Automation account as Runtime 5.1.
8989
- PowerShell 7.1 module management is not supported through `Get-AzAutomationModule` cmdlets.
90-
- Runbook will fail with no log trace, if input value contains character .
90+
- Runbook will fail with no log trace if the input value contains the character '.
9191

9292

9393
**Known issues**
@@ -125,7 +125,7 @@ The following are the current limitations and known issues with PowerShell runbo
125125
- Currently, PowerShell 7.2 (preview) runbooks are only supported from Azure portal. Rest API and PowerShell is not supported.
126126
- Az module 8.3.0 is installed by default and cannot be managed at the automation account level. Use custom modules to override the Az module to the desired version.
127127
- The imported PowerShell 7.2 (preview) module would be validated during job execution. Ensure that all dependencies for the selected module are also imported for successful job execution.
128-
- PowerShell 7.2 module management is not supported through `Get-AzAutomationModule` cmdlets
128+
- PowerShell 7.2 module management is not supported through `Get-AzAutomationModule` cmdlets.
129129

130130
**Known issues**
131131

articles/automation/runbook-input-parameters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ For an example of how to use input parameters in a Python runbook, see
112112
[My first Python runbook in Azure Automation](./learn/automation-tutorial-runbook-textual-python-3.md).
113113

114114
>[!NOTE]
115-
>Arguments with spaces are currently not supported. As a workaround, you could use \\t in addition to \\n.
115+
>Arguments with spaces are currently not supported. As a workaround, you could use \\\t in addition to \\\n.
116116
117117
## Assign values to input parameters in runbooks
118118

0 commit comments

Comments
 (0)