Skip to content

Commit 7731780

Browse files
committed
fix key
1 parent 7f36b05 commit 7731780

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Steps/Standalone/SyncQueueAlarmStep.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public function __invoke(array $options): StepResult
4444
'EvaluationPeriods' => Manifest::get('aws.queue.evaluation-periods', 3), // number of breaches of the Period before alarm
4545
'MetricName' => 'ApproximateNumberOfMessagesVisible',
4646
'Namespace' => 'AWS/SQS',
47-
'Period' => Manifest::get('aws.queue.threshold', 300), // time to evaluate the metric
47+
'Period' => Manifest::get('aws.queue.period', 300), // time to evaluate the metric
4848
'Statistic' => 'Average',
4949
'Threshold' => Manifest::get('aws.queue.threshold', 100),
5050
'TreatMissingData' => 'notBreaching',

src/Steps/Tenant/SyncQueueAlarmStep.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public function __invoke(array $options): StepResult
4444
'EvaluationPeriods' => Manifest::get('aws.queue.evaluation-periods', 3), // number of breaches of the Period before alarm
4545
'MetricName' => 'ApproximateNumberOfMessagesVisible',
4646
'Namespace' => 'AWS/SQS',
47-
'Period' => Manifest::get('aws.queue.threshold', 300), // time to evaluate the metric
47+
'Period' => Manifest::get('aws.queue.period', 300), // time to evaluate the metric
4848
'Statistic' => 'Average',
4949
'Threshold' => Manifest::get('aws.queue.threshold', 100),
5050
'TreatMissingData' => 'notBreaching',

0 commit comments

Comments
 (0)