From 9472c7e63bc410ab350ee76089a8783d8c1e4b3a Mon Sep 17 00:00:00 2001 From: Richard Megginson Date: Fri, 16 Dec 2022 18:41:48 -0700 Subject: [PATCH] Version 1.9.4 - CHANGELOG.md [citest skip] (#315) [1.9.4] - 2022-12-16 -------------------- ### New Features - none ### Bug Fixes - none ### Other Changes - Tests - use a threshold of 2 percent in volume size check (#313) There seems to be an issue calculating the expected size and the actual size of the volume. On some systems, the difference is greater than 1% but less than 2%. We are working on a better, more reliable method of calculating the expected and actual sizes. In the meantime, make the threshold 2%. Signed-off-by: Rich Megginson Signed-off-by: Rich Megginson --- CHANGELOG.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ce95a9d..7a207824 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,27 @@ Changelog ========= +[1.9.4] - 2022-12-16 +-------------------- + +### New Features + +- none + +### Bug Fixes + +- none + +### Other Changes + +- Tests - use a threshold of 2 percent in volume size check (#313) + +There seems to be an issue calculating the expected size and the +actual size of the volume. On some systems, the difference is +greater than 1% but less than 2%. We are working on a better, more +reliable method of calculating the expected and actual sizes. In +the meantime, make the threshold 2%. + [1.9.3] - 2022-12-06 --------------------