nickva commented on pull request #3414:
URL: https://github.com/apache/couchdb/pull/3414#issuecomment-797266385
To see if the db_expiration circular dependency on couch_jobs is messing up
the tests would you mind trying running the tests with this diff:
```
diff --git a/src/fabric/src/fabric2_db_expiration.erl
b/src/fabric/src/fabric2_db_expiration.erl
index 92f22e749..4a79e5474 100644
--- a/src/fabric/src/fabric2_db_expiration.erl
+++ b/src/fabric/src/fabric2_db_expiration.erl
@@ -56,7 +56,7 @@ start_link() ->
init(_) ->
process_flag(trap_exit, true),
- {ok, #st{job = undefined}, 0}.
+ {ok, #st{job = undefined}, 99999999}.
```
We are basically disabling db expiration from initialization and using
couch_jobs, so then when it restart, it doesn't bring fabric application down.
Wonder if you'd see a different set of failures with that or no difference at
all.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]