mirror of
https://github.com/hatchet-dev/hatchet.git
synced 2026-05-05 09:09:25 -05:00
fix: cast to int32
This commit is contained in:
@@ -275,7 +275,7 @@ func (p *payloadStoreRepositoryImpl) ProcessPayloadWAL(ctx context.Context, part
|
||||
|
||||
walRecords, err := p.queries.PollPayloadWALForRecordsToOffload(ctx, tx, sqlcv1.PollPayloadWALForRecordsToOffloadParams{
|
||||
Polllimit: int32(pollLimit),
|
||||
Partitionnumber: partitionNumber,
|
||||
Partitionnumber: int32(partitionNumber),
|
||||
})
|
||||
|
||||
hasMoreWALRecords := len(walRecords) == pollLimit
|
||||
|
||||
Reference in New Issue
Block a user