Skip to content

Commit

Permalink
Correct BlockRequest
Browse files Browse the repository at this point in the history
  • Loading branch information
wkirschenmann committed Aug 24, 2023
1 parent cff652b commit d8c22b5
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions Client/src/Unified/Services/Submitter/BlockRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,10 @@ internal class BlockRequest

public ArmonikPayload? Payload { get; set; }

public SemaphoreSlim Lock { get; set; }
public Guid SubmitId { get; set; }
public int MaxRetries { get; set; } = 5;
public TaskOptions TaskOptions { get; set; }
public SemaphoreSlim Lock { get; set; }
public Guid SubmitId { get; set; }

public string ResultId { get; set; }
public int MaxRetries { get; set; } = 5;
public TaskOptions TaskOptions { get; set; }
}

0 comments on commit d8c22b5

Please sign in to comment.