Skip to content

Commit

Permalink
Fix flakey test.
Browse files Browse the repository at this point in the history
Original pull request: #4824
Closes #4804
  • Loading branch information
christophstrobl authored and mp911de committed Nov 12, 2024
1 parent d0ee280 commit c14be60
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ public Flux<EventLog> saveWithLogs(Person person) {
TransactionalOperator transactionalOperator = TransactionalOperator.create(manager,
new DefaultTransactionDefinition());

return Flux.merge(operations.save(new EventLog(new ObjectId(), "beforeConvert")), //
return Flux.concat(operations.save(new EventLog(new ObjectId(), "beforeConvert")), //
operations.save(new EventLog(new ObjectId(), "afterConvert")), //
operations.save(new EventLog(new ObjectId(), "beforeInsert")), //
operations.save(person), //
Expand Down

0 comments on commit c14be60

Please sign in to comment.