You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by rn...@apache.org on 2014/03/18 21:18:42 UTC

couchdb commit: updated refs/heads/1592-follow-symlinks-for-space-check to 76a56cc

Repository: couchdb
Updated Branches:
  refs/heads/1592-follow-symlinks-for-space-check 521ca49b9 -> 76a56ccc4


[squash] recursive


Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/76a56ccc
Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/76a56ccc
Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/76a56ccc

Branch: refs/heads/1592-follow-symlinks-for-space-check
Commit: 76a56ccc4d908ad6f13051fd5497a76f0b334603
Parents: 521ca49
Author: Robert Newson <rn...@apache.org>
Authored: Tue Mar 18 20:18:31 2014 +0000
Committer: Robert Newson <rn...@apache.org>
Committed: Tue Mar 18 20:18:31 2014 +0000

----------------------------------------------------------------------
 src/couchdb/couch_compaction_daemon.erl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb/blob/76a56ccc/src/couchdb/couch_compaction_daemon.erl
----------------------------------------------------------------------
diff --git a/src/couchdb/couch_compaction_daemon.erl b/src/couchdb/couch_compaction_daemon.erl
index 52deaba..d68d716 100644
--- a/src/couchdb/couch_compaction_daemon.erl
+++ b/src/couchdb/couch_compaction_daemon.erl
@@ -500,7 +500,7 @@ abs_path(Path0) ->
     case Info#file_info.type of
         symlink ->
             {ok, Path} = file:read_link(Path0),
-            abs_path2(Path);
+            abs_path(Path);
         _ ->
             abs_path2(Path0)
     end.