Skip to content

Commit

Permalink
Merge pull request #788 from isucon/change-sleep
Browse files Browse the repository at this point in the history
SSEの再接続も30msで行うように
  • Loading branch information
wtks authored Dec 7, 2024
2 parents 14e2a23 + 4454113 commit 8d0ba39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bench/benchmarker/scenario/worldclient/worldclient.go
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ func (c *chairClient) ConnectChairNotificationStream(ctx *world.Context, chair *
}
}
}
time.Sleep(1 * time.Second)
time.Sleep(30 * time.Millisecond)
}
}()

Expand Down Expand Up @@ -515,7 +515,7 @@ func (c *userClient) ConnectUserNotificationStream(ctx *world.Context, user *wor
}
}
}
time.Sleep(1 * time.Second)
time.Sleep(30 * time.Millisecond)
}
}()

Expand Down

0 comments on commit 8d0ba39

Please sign in to comment.