Skip to content

Commit

Permalink
chore: adds a 400ms dispatch delay
Browse files Browse the repository at this point in the history
  • Loading branch information
ckartik committed Sep 22, 2024
1 parent 6ee91d4 commit 496fc32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion p2p/integrationtest/provider/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ func main() {
err = providerClient.SendBidResponse(context.Background(), &providerapiv1.BidResponse{
BidDigest: bid.BidDigest,
Status: status,
DispatchTimestamp: time.Now().UnixMilli(),
DispatchTimestamp: time.Now().UnixMilli() + (time.Hour.Milliseconds() * 400),
})
if err != nil {
logger.Error("failed to send bid response", "error", err)
Expand Down

0 comments on commit 496fc32

Please sign in to comment.