fix: transactions created in fdbcli did not wait on the result of committing

This commit is contained in:
Evan Tschannen 2018-04-11 11:24:24 -07:00
parent 3d2f08dcb5
commit 44c0eaf4d7
1 changed files with 1 additions and 1 deletions

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;
}