You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: use async symlink_metadata in restore cleanup
Replace blocking path.is_dir() with async tokio::fs::symlink_metadata() during restore cleanup phase.
Benefits:
- Non-blocking in async context (avoids blocking filesystem calls)
- Consistent with snapshot creation which uses symlink_metadata
- Does not follow symlinks (treats symlinks as files, not their targets)
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
0 commit comments