Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
rasmus committed May 13, 2018
2 parents ebc0df2 + 7282e3e commit 0fe1a95
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
### New in 0.57 (not released yet)
### New in 0.58 (not released yet)

* Minor fix: Corrected log in `CommandBus` regarding events emitted due to command

### New in 0.57.3359 (released 2018-04-30)

* Fixed: AggregateException/InvalidOperationException when reading and updating
an aggregate from different threads at the same time using `InMemoryEventPersistence`
Expand Down
2 changes: 1 addition & 1 deletion Source/EventFlow/CommandBus.cs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public async Task<TResult> PublishAsync<TAggregate, TIdentity, TResult>(
throw;
}

_log.Verbose(() => aggregateUpdateResult.DomainEvents.Any()
_log.Verbose(() => !aggregateUpdateResult.DomainEvents.Any()
? string.Format(
"Execution command '{0}' with ID '{1}' on aggregate '{2}' did NOT result in any domain events, was success:{3}",
command.GetType().PrettyPrint(),
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
init:
- git config --global core.autocrlf input

version: 0.57.{build}
version: 0.58.{build}

skip_tags: true

Expand Down

0 comments on commit 0fe1a95

Please sign in to comment.