File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ ENV CRAWLER_NAME=cdcrawlerprod
4848ENV CRAWLER_QUEUE_PREFIX=cdcrawlerprod
4949ENV CRAWLER_QUEUE_PROVIDER=storageQueue
5050ENV CRAWLER_STORE_PROVIDER=cdDispatch+cd(azblob)+azqueue
51+ ENV CRAWLER_HARVESTS_QUEUE_VISIBILITY_TIMEOUT_SECONDS=300
5152ENV CRAWLER_WEBHOOK_URL=https://api.clearlydefined.io/webhook
5253ENV CRAWLER_AZBLOB_CONTAINER_NAME=production
5354
Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ module.exports = {
126126 queueName : config . get ( 'CRAWLER_HARVESTS_QUEUE_NAME' ) || 'harvests' ,
127127 spnAuth : config . get ( 'CRAWLER_HARVESTS_QUEUE_SPN_AUTH' ) ,
128128 isSpnAuth : config . get ( 'CRAWLER_HARVESTS_QUEUE_IS_SPN_AUTH' ) || false ,
129- visibilityTimeout : isNaN ( azqueueVisibilityTimeoutSeconds ) ? 5 * 60 : azqueueVisibilityTimeoutSeconds // 5 minutes default
129+ visibilityTimeout : isNaN ( azqueueVisibilityTimeoutSeconds ) ? 0 : azqueueVisibilityTimeoutSeconds
130130 } ,
131131 'cd(azblob)' : cd_azblob ,
132132 'cd(file)' : cd_file
You can’t perform that action at this time.
0 commit comments