Skip to content

Commit

Permalink
Update number of slots synced for cacher prod (work groups)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sulejman committed Aug 22, 2024
1 parent 5c95474 commit ed46898
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/prost/contract.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ func coldSyncAllSlots() {
for i := int64(0); i <= 6000; i += 20 {
var wg sync.WaitGroup

for j := i; j < i+20 && j <= 5000; j++ {
for j := i; j < i+20 && j <= 6000; j++ {
wg.Add(1)
go func(slotIndex int64) {
defer wg.Done()
Expand Down

0 comments on commit ed46898

Please sign in to comment.