From 91e5439d5aa93b4f33605ceab8426ee4d837d9fc Mon Sep 17 00:00:00 2001 From: haydenmcp Date: Wed, 16 Feb 2022 13:17:45 -0500 Subject: [PATCH] Backed out test twitter fetch interval after verification. --- .../deep-microservice-collection/src/collection-service.mjs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/deep-microservice-collection/src/collection-service.mjs b/packages/deep-microservice-collection/src/collection-service.mjs index f5041a8ed..3e26af877 100644 --- a/packages/deep-microservice-collection/src/collection-service.mjs +++ b/packages/deep-microservice-collection/src/collection-service.mjs @@ -9,8 +9,7 @@ import { hasReadAllAccess } from './permissions.mjs'; * NOTE: Due to twitter developer account limitations only 500,000 tweets can be consumed per month. * As a result, ~400 businesses can be watched. */ -// const TWITTER_FETCH_INTERVAL = 6 * 60 * 60 * 1000; /** hrs * min * seconds * ms */ -const TWITTER_FETCH_INTERVAL = 2 * 60 * 1000; /** min * seconds * ms */ +const TWITTER_FETCH_INTERVAL = 6 * 60 * 60 * 1000; /** hrs * min * seconds * ms */ class CollectionService {