Backport #16461 Unfortunately #16435 asserts the wrong error and should use os.LinkError not os.PathError. Fix #16439 Signed-off-by: Andrew Thornton <art27@cantab.net>
This commit is contained in:
		
							parent
							
								
									bae0e1d773
								
							
						
					
					
						commit
						0f11c5f592
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -64,7 +64,7 @@ func Rename(oldpath, newpath string) error { | ||||||
| 		if err == nil { | 		if err == nil { | ||||||
| 			break | 			break | ||||||
| 		} | 		} | ||||||
| 		unwrapped := err.(*os.PathError).Err | 		unwrapped := err.(*os.LinkError).Err | ||||||
| 		if unwrapped == syscall.EBUSY || unwrapped == syscall.ENOTEMPTY || unwrapped == syscall.EPERM || unwrapped == syscall.EMFILE || unwrapped == syscall.ENFILE { | 		if unwrapped == syscall.EBUSY || unwrapped == syscall.ENOTEMPTY || unwrapped == syscall.EPERM || unwrapped == syscall.EMFILE || unwrapped == syscall.ENFILE { | ||||||
| 			// try again
 | 			// try again
 | ||||||
| 			<-time.After(100 * time.Millisecond) | 			<-time.After(100 * time.Millisecond) | ||||||
|  |  | ||||||
		Loading…
	
		Reference in a new issue