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 spelling errors and modernize deprecated io/ioutil usage
- Fix spelling errors in comments and logs:
* 'retring' → 'retrying' in node.go
* 'proccessing' → 'processing' in efs_watch_dog.go logs
- Replace deprecated io/ioutil functions for Go 1.16+ compatibility:
* ioutil.ReadDir() → os.ReadDir() in efs_watch_dog.go
* ioutil.TempDir() → os.MkdirTemp() in tests
* ioutil.WriteFile() → os.WriteFile() in tests
* ioutil.ReadFile() → os.ReadFile() in reaper.go and tests
All tests pass and functionality remains unchanged.
0 commit comments