Explorar el Código

fsync cache file (#1094)

Jon Meow hace 4 años
padre
commit
900f41cc3a
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  1. 2 0
      scripts/scripts_utils.py

+ 2 - 0
scripts/scripts_utils.py

@@ -81,6 +81,8 @@ def _download(url: str, local_path: Path) -> Optional[int]:
             return int(response.code)
         with local_path.open("wb") as f:
             shutil.copyfileobj(response, f)
+            # Run fsync because of "Text file busy" in GH Actions.
+            os.fsync(f.fileno())
     return None