Skip to content

Commit

Permalink
Fix duplicate metrics in memtier executor (#374)
Browse files Browse the repository at this point in the history
* Fix duplicate metrics in memtier executor

* bump version
  • Loading branch information
yangpanMS authored Sep 4, 2024
1 parent d761f32 commit f5c087f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.15.17
1.15.18
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ public MemtierBenchmarkClientExecutor(IServiceCollection dependencies, IDictiona
// Ensure the duration is in integer (seconds) form.
int duration = this.Duration;
this.Parameters[nameof(this.Duration)] = duration;
this.processOutputDescriptions = new List<ProcessOutputDescription>();
}

/// <summary>
Expand Down Expand Up @@ -231,6 +230,7 @@ protected override async Task ExecuteAsync(EventContext telemetryContext, Cancel
{
IPAddress ipAddress;
List<Task> clientWorkloadTasks = new List<Task>();
this.processOutputDescriptions = new List<ProcessOutputDescription>();

if (this.IsMultiRoleLayout())
{
Expand Down

0 comments on commit f5c087f

Please sign in to comment.