fix: transactions created in fdbcli did not wait on the result of committing
This commit is contained in:
parent
3d2f08dcb5
commit
44c0eaf4d7
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue