chore: go fmt

This commit is contained in:
Jon Lundy
2022-11-20 10:26:20 -07:00
parent 92b813c9ed
commit 4b4d3b743d
9 changed files with 12 additions and 14 deletions

View File

@@ -188,7 +188,6 @@ func (e *eventLog) Append(ctx context.Context, events event.Events, version uint
attribute.Int64("args.version", int64(version)),
attribute.String("streamID", e.streamID),
attribute.String("path", e.diskStore.path),
)
event.SetStreamID(e.streamID, events...)
@@ -279,7 +278,6 @@ func (e *eventLog) Read(ctx context.Context, after, count int64) (event.Events,
attribute.Int64("start", int64(start)),
attribute.Int64("count", int64(count)),
attribute.Int64("after", int64(after)),
)
events = make([]event.Event, math.Abs(count))
@@ -322,7 +320,7 @@ func (e *eventLog) ReadN(ctx context.Context, index ...uint64) (event.Events, er
lis := make([]int64, len(index))
for i := range index {
lis[i]=int64(index[i])
lis[i] = int64(index[i])
}
span.SetAttributes(
@@ -345,7 +343,7 @@ func (e *eventLog) ReadN(ctx context.Context, index ...uint64) (event.Events, er
func (e *eventLog) FirstIndex(ctx context.Context) (uint64, error) {
ctx, span := lg.Span(ctx)
defer span.End()
span.SetAttributes(
attribute.String("streamID", e.streamID),
attribute.String("path", e.diskStore.path),
@@ -383,7 +381,7 @@ func (e *eventLog) LastIndex(ctx context.Context) (uint64, error) {
func (e *eventLog) Truncate(ctx context.Context, index int64) error {
ctx, span := lg.Span(ctx)
defer span.End()
span.SetAttributes(
attribute.Int64("args.index", index),
attribute.String("streamID", e.streamID),
@@ -432,7 +430,7 @@ func readStreamN(ctx context.Context, stream *wal.Log, index ...uint64) (event.E
lis := make([]int64, len(index))
for i := range index {
lis[i]=int64(index[i])
lis[i] = int64(index[i])
}
span.SetAttributes(

View File

@@ -118,7 +118,6 @@ func (w *wrapper) LastIndex(ctx context.Context) (uint64, error) {
return w.up.LastIndex(ctx)
}
func DefaultProjection(e event.Event) []event.Event {
m := e.EventMeta()
streamID := m.StreamID

View File

@@ -274,7 +274,7 @@ func (es *EventStore) EventStream() driver.EventStream {
func (es *EventStore) Truncate(ctx context.Context, streamID string, index int64) error {
ctx, span := lg.Span(ctx)
defer span.End()
up, err := es.Driver.EventLog(ctx, streamID)
if err != nil {
return err

View File

@@ -124,7 +124,7 @@ func GetContainer(ctx context.Context, s string) Event {
var e Event
eventTypes.Modify(ctx, func(ctx context.Context,c *config) error {
eventTypes.Modify(ctx, func(ctx context.Context, c *config) error {
_, span := lg.Span(ctx)
defer span.End()