Skip to content

Commit

Permalink
Fix ooc 2 (#3484)
Browse files Browse the repository at this point in the history
* fix OOC check

* fix ooc
  • Loading branch information
ToniRamirezM authored Mar 23, 2024
1 parent 10022cd commit ecb6578
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion state/batchV2.go
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ func (s *State) sendBatchRequestToExecutorV2(ctx context.Context, batchRequest *
log.Warn(batchResponseToString)
s.eventLog.LogExecutorErrorV2(ctx, batchResponse.Error, batchRequest)
} else if batchResponse.ErrorRom != executor.RomError_ROM_ERROR_NO_ERROR && executor.IsROMOutOfCountersError(batchResponse.ErrorRom) {
err = executor.ExecutorErr(batchResponse.Error)
err = executor.RomErr(batchResponse.ErrorRom)
log.Warnf("executor batch %d response, ROM OOC, error: %v", newBatchNum, err)
log.Warn(batchResponseToString)
} else if batchResponse.ErrorRom != executor.RomError_ROM_ERROR_NO_ERROR {
Expand Down

0 comments on commit ecb6578

Please sign in to comment.