neurolink icon indicating copy to clipboard operation
neurolink copied to clipboard

IMG-014: No Retry Logic for Downloads

Open murdore opened this issue 1 month ago • 0 comments

Summary

Network downloads fail permanently on first error without retry.

Root Cause

Lines 524-573 single attempt for URL downloads.

Fix

Implement retry wrapper with exponential backoff (3 attempts, 1s/2s/4s delays).

Acceptance Criteria

  • [ ] Implement retry wrapper with exponential backoff
  • [ ] Maximum 3 attempts
  • [ ] Only retry on network errors, not 404/403
  • [ ] Add tests for retry success and eventual failure

murdore avatar Dec 01 '25 08:12 murdore