Skip to content

Commit 9e6ef83

Browse files
authored
Merge pull request #102 from simplify9/feat/amqp-health-dashboard
fix: reduce polling interval for AMQP health queries from 10s to 3s
2 parents e7b605f + 89b3d78 commit 9e6ef83

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/AmqpHealth.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import ConsumerHealthTable from 'src/components/AmqpHealth/ConsumerHealthTable';
1212
import RetryAnalysisTable from 'src/components/AmqpHealth/RetryAnalysisTable';
1313
import DeadLetterTable from 'src/components/AmqpHealth/DeadLetterTable';
1414

15-
const POLL_INTERVAL = 10_000;
15+
const POLL_INTERVAL = 3_000;
1616

1717
const Skeleton: React.FC<{ className?: string }> = ({ className }) => (
1818
<div className={`animate-pulse bg-gray-200 rounded-xl ${className ?? 'h-20'}`} />

0 commit comments

Comments
 (0)