We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3bc1d8 commit ad1132fCopy full SHA for ad1132f
src/lib/ParseApp.js
@@ -532,10 +532,6 @@ export default class ParseApp {
532
}
533
534
getJobStatus() {
535
- // Cache it for a 30s
536
- if (new Date() - this.jobStatus.lastFetched < 30000) {
537
- return Promise.resolve(this.jobStatus.status);
538
- }
539
let query = new Parse.Query('_JobStatus');
540
query.descending('createdAt');
541
return query.find({ useMasterKey: true }).then((status) => {
0 commit comments