Skip to content
Snippets Groups Projects
Unverified Commit 11441c93 authored by Mark McKinnon's avatar Mark McKinnon Committed by GitHub
Browse files

Merge pull request #7835 from gdicristofaro/AUT-2458-messaging

2458 long polling messaging
parents 9e4c0b98 eb6f7a4f
No related branches found
No related tags found
No related merge requests found
......@@ -700,6 +700,7 @@ private void longPollForNotFound(IngestJobState ingestJobState) throws Interrupt
Bundle.MalwareScanIngestModule_longPollForNotFound_fileLookupPolling_title(),
Bundle.MalwareScanIngestModule_longPollForNotFound_fileLookupPolling_desc()
);
logger.log(Level.INFO, "Begin polling for malware status of file uploads.");
Map<String, List<Long>> remaining = new HashMap<>(ingestJobState.getUnidentifiedHashes());
......@@ -735,6 +736,9 @@ private void longPollForNotFound(IngestJobState ingestJobState) throws Interrupt
// exponential backoff before trying again
long waitMultiplier = ((long) Math.pow(2, retry));
logger.log(Level.INFO, MessageFormat.format("Waiting {0} milliseconds before polling again for malware status of file uploads.", (waitMultiplier * FILE_UPLOAD_RETRY_SLEEP_MILLIS)));
for (int i = 0; i < waitMultiplier; i++) {
if (!ingestJobState.isDoFileLookups() || ingestJobState.getIngestJobContext().fileIngestIsCancelled()) {
return;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment