Successful build (1 month ago):
https://travis-ci.org/scottohara/tvmanager/builds/449081846
Failing build (today):
https://travis-ci.org/scottohara/tvmanager/builds/465811327#L1383
Both builds run on the xcode10
image, and install couchdb
from homebrew.
The only notable difference between the two is that the successful build installed couchdb@1.7.1_7
and the latest build installs couchdb@1.7.1_8
.
The couchdb server does appears to have started successfully in both builds (see L1082 in the successful build, and L1380 in the failed build)
The point at which the failure occurs is when trying to connect to the couch service on http://localhost:5984. The error is:
Errno::ECONNREFUSED: Connection refused - Connection refused - connect(2) for "localhost" port 5984 (localhost:5984)
Has something changed recently that is preventing http://localhost:5984 from being accessed in the macOS environment? Would using http://127.0.0.1:5984 (instead of localhost
) make any difference?