Skip to content

Commit

Permalink
change source send frequency
Browse files Browse the repository at this point in the history
  • Loading branch information
venjiang committed May 18, 2022
1 parent b7950fc commit 4a493f1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion example/4-cascading-zipper/source-1/source.go
Expand Up @@ -58,7 +58,7 @@ func generateAndSendData(stream yomo.Source) error {
i++

log.Printf("[source] ✅ Emit %s to YoMo-Zipper", data)
time.Sleep(10 * time.Millisecond)
time.Sleep(1000 * time.Millisecond)
}
return nil
}
2 changes: 1 addition & 1 deletion example/4-cascading-zipper/source-2/source.go
Expand Up @@ -58,7 +58,7 @@ func generateAndSendData(stream yomo.Source) error {
i++

log.Printf("[source] ✅ Emit %s to YoMo-Zipper", data)
time.Sleep(10 * time.Millisecond)
time.Sleep(1000 * time.Millisecond)
}
return nil
}

0 comments on commit 4a493f1

Please sign in to comment.