File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
src/WebJobs.Script.Abstractions Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -12,21 +12,21 @@ public class RetryOptions
12
12
/// <summary>
13
13
/// Gets or sets the maximum number of retries allowed per function execution
14
14
/// </summary>
15
- public int MaxRetryCount { get ; set ; }
15
+ public int ? MaxRetryCount { get ; set ; }
16
16
17
17
/// <summary>
18
18
/// Gets or sets the delay that will be used between retries when using <see cref="RetryStrategy.FixedDelay"/> strategy
19
19
/// </summary>
20
- public TimeSpan DelayInterval { get ; set ; }
20
+ public TimeSpan ? DelayInterval { get ; set ; }
21
21
22
22
/// <summary>
23
23
/// Gets or sets the minimum retry delay when using <see cref="RetryStrategy.ExponentialBackoff"/> strategy
24
24
/// </summary>
25
- public TimeSpan MinimumInterval { get ; set ; }
25
+ public TimeSpan ? MinimumInterval { get ; set ; }
26
26
27
27
/// <summary>
28
28
/// Gets or sets the maximum retry delay when using <see cref="RetryStrategy.ExponentialBackoff"/> strategy
29
29
/// </summary>
30
- public TimeSpan MaximumInterval { get ; set ; }
30
+ public TimeSpan ? MaximumInterval { get ; set ; }
31
31
}
32
32
}
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
<Import Project =" ..\..\build\common.props" />
3
3
<PropertyGroup >
4
- <Version >1.0.1 -preview</Version >
4
+ <Version >1.0.2 -preview</Version >
5
5
<MajorMinorProductVersion >1.0</MajorMinorProductVersion >
6
6
<AssemblyVersion >$(MajorMinorProductVersion).0.0</AssemblyVersion >
7
7
<FileVersion >$(MajorMinorProductVersion).$(BuildNumber).0</FileVersion >
You can’t perform that action at this time.
0 commit comments