Skip to content

Commit

Permalink
Update version to 1.0.0-dev-00012, fix typo in logging description, a…
Browse files Browse the repository at this point in the history
…nd remove pipeline step profiling comment.
  • Loading branch information
adambajguz committed Sep 5, 2024
1 parent 761c277 commit e0b0055
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>

<PropertyGroup>
<Version>1.0.0-dev-00011</Version>
<Version>1.0.0-dev-00012</Version>
<Author>PackSite</Author>
<Company>PackSite</Company>
<Copyright>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ public void Dispose()
}

/// <summary>
/// High-perfomrance logging definitions.
/// High-performance logging definitions.
/// </summary>
private static class Log
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ internal delegate ValueTask ConcreteStepDelegate(IBaseStep[] steps,
/// <inheritdoc/>
public Task<TArgs> InvokeAsync(TArgs input, CancellationToken cancellationToken = default)
{
if (_universalSteps.Length <= 0)
if (_universalSteps.Length == 0)
{
_invokablePipelineCounters.Success(0);
_pipelineCounters.Success(0);
Expand All @@ -62,8 +62,6 @@ public Task<TArgs> InvokeAsync(TArgs input, CancellationToken cancellationToken
/// <inheritdoc/>
public async Task<TArgs> InvokeAsync(TArgs input, StepDelegate? terminationContinuation, CancellationToken cancellationToken = default)
{
//TODO: pipeline step profiling

Stopwatch stopwatch = Stopwatch.StartNew();

try
Expand Down

0 comments on commit e0b0055

Please sign in to comment.