– Edit –
I found the place to report this as a bug, issue JCBC-553 created.
– Original –
The following code hangs on the 2nd query. I have logs showing everything at FINEST, but I need a place to report this properly.
CouchbaseCluster cluster = CouchbaseCluster.fromConnectionString("couchbase://192.168.1.75"); Bucket bucket = cluster.openBucket("trade-unittest", "blah").toBlocking().first(); bucket .query(ViewQuery.from("devOnly", "allDocs")) .flatMap(result -> result.rows()) .toBlocking() .forEach(row -> logger.log(Level.INFO, row.id())); bucket .query(ViewQuery.from("devOnly", "allDocs")) .flatMap(result -> result.rows()) .toBlocking() .forEach(row -> logger.log(Level.INFO, row.id())); cluster.disconnect();