Revert "remove the try except block around hasAtomicMove"
This reverts commit 411f70eb0e
.
This commit is contained in:
parent
cb5b00852c
commit
52f4a69a11
@ -603,7 +603,11 @@ def has_atomic_move(path):
|
||||
we need to be careful about using moves. In some cases it is safer
|
||||
not to use temporary locations in this case.
|
||||
"""
|
||||
return _pywrap_file_io.HasAtomicMove(compat.as_bytes(path))
|
||||
try:
|
||||
return _pywrap_file_io.HasAtomicMove(compat.as_bytes(path))
|
||||
except errors.OpError:
|
||||
# defaults to True
|
||||
return True
|
||||
|
||||
|
||||
@tf_export(v1=["gfile.ListDirectory"])
|
||||
|
Loading…
Reference in New Issue
Block a user