From 62e9ba1755e8299e945153247af53b4fc268df21 Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Sun, 22 Feb 2015 11:51:51 +0100 Subject: [PATCH] Server/py: Minor comment improvement. --- plomrogue-server.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plomrogue-server.py b/plomrogue-server.py index c9cc20e..c80bbf1 100755 --- a/plomrogue-server.py +++ b/plomrogue-server.py @@ -80,8 +80,8 @@ def obey(cmd, io_db, prefix): def record(cmd, io_db): """Append cmd string plus newline to file at path_recordfile. (Atomic.)""" # This misses some optimizations from the original record(), namely only - # finishing the atomic write with flush() and fsync() every 15 seconds - # unless explicitely forced. Implement as needed. + # finishing the atomic write with expensive flush() and fsync() every 15 + # seconds unless explicitely forced. Implement as needed. path_tmp = io_db["path_record"] + io_db["tmp_suffix"] if os.access(io_db["path_record"], os.F_OK): shutil.copyfile(io_db["path_record"], path_tmp) -- 2.30.2