HubSpot / Singularity

Scheduler (HTTP API and webapp) for running Mesos tasks—long running processes, one-off tasks, and scheduled jobs. #hubspot-open-source
http://getsingularity.com/
Apache License 2.0
822 stars 188 forks source link

Fix NoSuchFileExceptions in S3Uploader #2238

Closed pschoenfelder closed 2 years ago

pschoenfelder commented 2 years ago

The call to Files.getLastModifiedTime was outside the try-catch block that captures NoSuchFileExceptions, so the uploader flags this as and error instead of marking the upload complete. This PR moves the call inside the try-catch block.

rosalind210 commented 2 years ago

🚢