Skip to content

Commit

Permalink
Make concurrent exec limit nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
boma96 committed Dec 3, 2024
1 parent bf31b37 commit 90cd5c2
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/ConductorSharp.Client/ConductorSharp.Client.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<Authors>Codaxy</Authors>
<Company>Codaxy</Company>
<PackageId>ConductorSharp.Client</PackageId>
<Version>2.4.1</Version>
<Version>2.4.2</Version>
<Description>Client library for Netflix Conductor, with some additional quality of life features.</Description>
<RepositoryUrl>https://github.com/codaxy/conductor-sharp</RepositoryUrl>
<PackageTags>netflix;conductor</PackageTags>
Expand Down
2 changes: 1 addition & 1 deletion src/ConductorSharp.Client/Model/Common/TaskDefinition.cs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public class TaskDefinition
/// <summary>Number of tasks that can be executed at any given time.</summary>
/// <remarks>Optional</remarks>
[JsonProperty("concurrentExecLimit")]
public int ConcurrentExecLimit { get; set; }
public int? ConcurrentExecLimit { get; set; }

/// <summary>Allows to define default values, which can be overridden by values provided in Workflow.</summary>
[JsonProperty("inputTemplate")]
Expand Down
2 changes: 1 addition & 1 deletion src/ConductorSharp.Engine/ConductorSharp.Engine.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<Authors>Codaxy</Authors>
<Company>Codaxy</Company>
<PackageId>ConductorSharp.Engine</PackageId>
<Version>2.4.1</Version>
<Version>2.4.2</Version>
<Description>Client library for Netflix Conductor, with some additional quality of life features.</Description>
<RepositoryUrl>https://github.com/codaxy/conductor-sharp</RepositoryUrl>
<PackageTags>netflix;conductor</PackageTags>
Expand Down
2 changes: 1 addition & 1 deletion src/ConductorSharp.Patterns/ConductorSharp.Patterns.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
<Authors>Codaxy</Authors>
<Company>Codaxy</Company>
<Version>2.4.1</Version>
<Version>2.4.2</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/ConductorSharp.Toolkit/ConductorSharp.Toolkit.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<Nullable>disable</Nullable>
<PackAsTool>true</PackAsTool>
<ToolCommandName>dotnet-conductorsharp</ToolCommandName>
<Version>2.0.0</Version>
<Version>2.0.1</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/ConductorSharp.Toolkit/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ namespace ConductorSharp.Toolkit
{
class Program
{
public const string Version = "2.0.0";
public const string Version = "2.0.1";

public async static Task Main(string[] args)
{
Expand Down

0 comments on commit 90cd5c2

Please sign in to comment.