Merge pull request #141 from etschannen/release-5.1

updated release notes, fixed cli bug
This commit is contained in:
A.J. Beamon 2018-04-11 11:37:15 -07:00 committed by GitHub
commit 629825b061
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 1 deletions

View File

@ -2,6 +2,23 @@
Release Notes
#############
5.1.5
=====
Fixes
-----
* The consistency check calculated the size of the database inefficiently. <rdar://problem/38385230>
* Could not create new directories with the Python and Ruby implementations of the directory layer. <rdar://problem/38911902> <rdar://problem/38477474>
* fdbcli could erroneously report that it was incompatible with some processes in the cluster. <rdar://problem/39353867>
* The commit commmand in fdbcli did not wait for the result of the commit before continuing to the next command.
Other Changes
-------------
* renamed the ``multi_dc`` replication mode to ``three_datacenter``.
5.1.4
=====

View File

@ -2513,7 +2513,7 @@ ACTOR Future<int> cli(CLIOptions opt, LineNoise* plinenoise) {
printf("ERROR: No active transaction\n");
is_error = true;
} else {
commitTransaction( tr );
Void _ = wait( commitTransaction( tr ) );
intrans = false;
options = &globalOptions;
}