Skip to content

Commit dba0c62

Browse files
committed
Copyright notices
1 parent e711cd2 commit dba0c62

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed

src/SeqCli/Cli/Commands/Bench/BenchCase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018 Datalust Pty Ltd
1+
// Copyright Datalust Pty Ltd and Contributors
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

src/SeqCli/Cli/Commands/Bench/BenchCaseTimings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018 Datalust Pty Ltd
1+
// Copyright Datalust Pty Ltd and Contributors
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

src/SeqCli/Cli/Commands/Bench/BenchCasesCollection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018 Datalust Pty Ltd
1+
// Copyright Datalust Pty Ltd and Contributors
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

src/SeqCli/Cli/Commands/Bench/BenchCommand.cs

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018 Datalust Pty Ltd
1+
// Copyright Datalust Pty Ltd and Contributors
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.
@@ -54,9 +54,7 @@ namespace SeqCli.Cli.Commands;
5454
"Query": "select count(*) from stream where @Level = 'Warning'",
5555
"RelativeStandardDeviationElapsed": 0.05619408341421253,
5656
"Runs": 10,
57-
"Signals": [
58-
"signal-m33302"
59-
],
57+
"SignalExpression": "signal-m33302",
6058
"Start": "2022-08-14T16:00:00.0000000"
6159
}
6260
*/
@@ -148,7 +146,7 @@ protected override async Task<int> Run()
148146
using (LogContext.PushProperty("MinElapsed", timings.MinElapsed))
149147
using (LogContext.PushProperty("MaxElapsed", timings.MaxElapsed))
150148
using (LogContext.PushProperty("Runs", _runs))
151-
using (LogContext.PushProperty("Signals", c.SignalExpression))
149+
using (LogContext.PushProperty("SignalExpression", c.SignalExpression))
152150
using (LogContext.PushProperty("Start", start))
153151
using (LogContext.PushProperty("StandardDeviationElapsed", timings.StandardDeviationElapsed))
154152
using (end != null ? LogContext.PushProperty("End", end) : null)

0 commit comments

Comments
 (0)