cbickel opened a new pull request #2697: Increase CouchDB to version 2.0 URL: https://github.com/apache/incubator-openwhisk/pull/2697 If the cache is disabled in the controller, the following tests are failing: - Wsk actions should create, and get an action to verify parameter and annotation parsing - Wsk packages should create, and get a package to verify parameter and annotation parsing - Wsk triggers should create, and get a trigger to verify parameter and annotation parsing The reason is, that the number `12345678912.123456789012` is rounded to `12345678912.123457` in the controller. On writing `12345678912.123457` into CouchDB, the value `12345678912.123456955` is saved. On getting the document again from CouchDB, the controller returns `12345678912.123456955`. That's why the test is failing. The cache in the controller has hidden this issue until now. Increasing to version 2.0 fixes this issue. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
With regards, Apache Git Services
