Reduce peering processing interval from 2 minutes to 30 seconds

The 2 minute interval was causing a noticeable delay before peerings
appeared in the database. Reducing to 30 seconds provides a better
user experience while still maintaining efficient batch processing.
이 커밋은 다음에 포함됨:
2025-07-28 23:05:58 +02:00
부모 c9da20e630
커밋 2cfca78464
2개의 변경된 파일267728개의 추가작업 그리고 113310개의 파일을 삭제
+1 -1
파일 보기
@@ -21,7 +21,7 @@ const (
pathExpirationTime = 30 * time.Minute
// peeringProcessInterval is how often to process AS paths into peerings
peeringProcessInterval = 2 * time.Minute
peeringProcessInterval = 30 * time.Second
// pathPruneInterval is how often to prune old AS paths
pathPruneInterval = 5 * time.Minute