jbilcke-hf HF staff commited on
Commit
be15697
·
1 Parent(s): 43afa34

improved reliability

Browse files
Files changed (1) hide show
  1. src/main.mts +1 -1
src/main.mts CHANGED
@@ -34,7 +34,7 @@ export const main = async () => {
34
  console.error(`one of the jobs failed: ${somethingFailed}, let's wait 5 seconds`)
35
  setTimeout(() => { main() }, 5000)
36
  } else {
37
- // console.log(`successfully worked on the jobs, let's immediately loop`)
38
  setTimeout(() => { main() }, 50)
39
  }
40
 
 
34
  console.error(`one of the jobs failed: ${somethingFailed}, let's wait 5 seconds`)
35
  setTimeout(() => { main() }, 5000)
36
  } else {
37
+ console.log(`successfully worked on the jobs, let's immediately loop`)
38
  setTimeout(() => { main() }, 50)
39
  }
40