Skip to content

Commit

Permalink
Change await network from 15-->2 minutes
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremiah-carlson authored Oct 12, 2023
1 parent f477bff commit d37d3e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions www/src/logic/PostMain.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export function PostMain(queue){
case 404:
console.log('Not found!');
queue.push(req);
setTimeout(()=>{PostMain(queue)}, 15*60*1000);
setTimeout(()=>{PostMain(queue)}, 2*60*1000);
break;
default:
console.log(resp);
Expand All @@ -32,4 +32,4 @@ export function PostMain(queue){
setTimeout(()=>{PostMain(queue)}, 60*1000);
}

};
};

0 comments on commit d37d3e4

Please sign in to comment.