Skip to content

Commit

Permalink
chore(deps): upgrade Go-Akt to v2.10.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Tochemey committed Dec 20, 2024
1 parent 0289688 commit 34ecbaa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion durable_state_actor.go
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ func (entity *durableStateActor) persistStateAndPublish(ctx context.Context) err
VersionNumber: entity.currentVersion,
ResultingState: resultingState,
Timestamp: entity.lastCommandTime.Unix(),
Shard: shardNumber,
Shard: uint64(shardNumber),
}

eg, ctx := errgroup.WithContext(ctx)
Expand Down
2 changes: 1 addition & 1 deletion event_sourced_actor.go
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ func (entity *eventSourcedActor) processCommandAndReply(ctx *actors.ReceiveConte
Event: event,
ResultingState: state,
Timestamp: entity.lastCommandTime.Unix(),
Shard: shardNumber,
Shard: uint64(shardNumber),
}
envelopes = append(envelopes, envelope)
}
Expand Down

0 comments on commit 34ecbaa

Please sign in to comment.