Merge pull request #141 from etschannen/release-5.1
updated release notes, fixed cli bug
This commit is contained in:
commit
629825b061
|
@ -2,6 +2,23 @@
|
||||||
Release Notes
|
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
|
5.1.4
|
||||||
=====
|
=====
|
||||||
|
|
||||||
|
|
|
@ -2513,7 +2513,7 @@ ACTOR Future<int> cli(CLIOptions opt, LineNoise* plinenoise) {
|
||||||
printf("ERROR: No active transaction\n");
|
printf("ERROR: No active transaction\n");
|
||||||
is_error = true;
|
is_error = true;
|
||||||
} else {
|
} else {
|
||||||
commitTransaction( tr );
|
Void _ = wait( commitTransaction( tr ) );
|
||||||
intrans = false;
|
intrans = false;
|
||||||
options = &globalOptions;
|
options = &globalOptions;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue