Skip to content

Commit db30467

Browse files
committed
Clean up formatting
1 parent e233c8e commit db30467

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

src/ServiceControl.Transports.SQS/AmazonSQSQuery.cs

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -215,12 +215,16 @@ public override async IAsyncEnumerable<QueueThroughput> GetThroughputPerDay(IBro
215215
Namespace = "AWS/SQS",
216216
MetricName = "NumberOfMessagesDeleted",
217217
StartTime = startUtc,
218-
EndTime = endUtc, // exclusive
218+
EndTime = endUtc, // exclusive
219219
Period = SecondsInDay,
220220
Statistics = ["Sum"],
221-
Dimensions = [
222-
new Dimension { Name = "QueueName", Value = brokerQueue.QueueName }
223-
],
221+
Dimensions =
222+
[
223+
new Dimension
224+
{
225+
Name = "QueueName", Value = brokerQueue.QueueName
226+
}
227+
]
224228
};
225229

226230
var resp = await cloudWatch!.GetMetricStatisticsAsync(req, cancellationToken);

0 commit comments

Comments
 (0)