Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
drteeth committed Sep 19, 2024
1 parent b349c10 commit 39f429b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/event_store/storage/appender.ex
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ defmodule EventStore.Storage.Appender do
|> Enum.reduce(stream_id, fn batch, stream_id ->
event_count = length(batch)

with {:ok, new_stream_id} <- insert_event_batch(conn, stream_id, stream_uuid, batch, event_count, opts) do
with {:ok, new_stream_id} <-
insert_event_batch(conn, stream_id, stream_uuid, batch, event_count, opts) do
Logger.debug("Appended #{event_count} event(s) to stream #{inspect(stream_uuid)}")
new_stream_id
else
Expand Down

0 comments on commit 39f429b

Please sign in to comment.