diff options
author | Jan Lehnardt <jan@apache.org> | 2008-07-10 22:07:10 +0000 |
---|---|---|
committer | Jan Lehnardt <jan@apache.org> | 2008-07-10 22:07:10 +0000 |
commit | ae2d68d08a9c97c71e82da9aae808fb49e699695 (patch) | |
tree | 9494eb03d5a28421bb6e983ac9ca650e120f0392 /src/couchdb/couch_file.erl | |
parent | 197a439cc4c6b61fac3db0e8d60ca16411673e0d (diff) |
Wait for the OS to flush our newly written data to disk without timing out too quickly.
git-svn-id: https://svn.apache.org/repos/asf/incubator/couchdb/trunk@675780 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/couchdb/couch_file.erl')
-rw-r--r-- | src/couchdb/couch_file.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/couchdb/couch_file.erl b/src/couchdb/couch_file.erl index 26831c8c..9baa1f73 100644 --- a/src/couchdb/couch_file.erl +++ b/src/couchdb/couch_file.erl @@ -156,7 +156,7 @@ truncate(Fd, Pos) -> %%---------------------------------------------------------------------- sync(Fd) -> - gen_server:call(Fd, sync). + gen_server:call(Fd, sync, infinity). %%---------------------------------------------------------------------- %% Purpose: Close the file. Is performed asynchronously. |