You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by da...@apache.org on 2019/07/31 16:55:59 UTC

[couchdb] 09/34: Fix fabric2_txids:terminate/2

This is an automated email from the ASF dual-hosted git repository.

davisp pushed a commit to branch prototype/fdb-layer
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit ad31f51f641af05241dd833a9cf9b93d726505c0
Author: Paul J. Davis <pa...@gmail.com>
AuthorDate: Fri Jun 7 12:49:49 2019 -0500

    Fix fabric2_txids:terminate/2
---
 src/fabric/src/fabric2_txids.erl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/fabric/src/fabric2_txids.erl b/src/fabric/src/fabric2_txids.erl
index bbb8bdf..ba42741 100644
--- a/src/fabric/src/fabric2_txids.erl
+++ b/src/fabric/src/fabric2_txids.erl
@@ -75,7 +75,7 @@ terminate(_, #{txids := TxIds}) ->
         fabric2_fdb:transactional(fun(Tx) ->
             lists:foreach(fun(TxId) ->
                 erlfdb:clear(Tx, TxId)
-            end)
+            end, TxIds)
         end)
     end,
     ok.