Skip to content

Commit ef5e61a

Browse files
Start-AACmdlet Timeout to 10800
1 parent d72ac68 commit ef5e61a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/ResourceManager/Automation/Commands.Automation/Cmdlet/StartAzureAutomationRunbook.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public SwitchParameter Wait
9292
/// <summary>
9393
/// Gets or sets the switch parameter to wait for job output
9494
/// </summary>
95-
[Parameter(Mandatory = false, ParameterSetName = AutomationCmdletParameterSets.BySynchronousReturnJobOutput, HelpMessage = "Maximum time in seconds to wait for job completion. Default max wait time is 5400 seconds.")]
95+
[Parameter(Mandatory = false, ParameterSetName = AutomationCmdletParameterSets.BySynchronousReturnJobOutput, HelpMessage = "Maximum time in seconds to wait for job completion. Default max wait time is 10800 seconds.")]
9696
public int MaxWaitSeconds
9797
{
9898
get { return this.timeout; }

src/ResourceManager/Automation/Commands.Automation/Common/Constants.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public class AutomationAccountState
6363

6464
public const int JobSummaryLength = 80;
6565

66-
public const int MaxWaitSeconds = 5400;
66+
public const int MaxWaitSeconds = 10800;
6767

6868
// The template file is a json
6969
public const string TemplateFile = @"https://eus2oaasibizamarketprod1.blob.core.windows.net/automationdscpreview/azuredeployV2.json";

0 commit comments

Comments
 (0)