Skip to content

Commit

Permalink
temp disable non-peekyou
Browse files Browse the repository at this point in the history
  • Loading branch information
sshh12 committed Nov 27, 2020
1 parent afe338d commit 7e5590b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/scrape-venmo/name_search.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ const userAgent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36
func RunNameSearchScraper(store *storage.Store, workers int) {
done := make(chan error)
for i := 0; i < workers; i++ {
go runBing(store, done)
go runDDG(store, done)
//go runBing(store, done)
//go runDDG(store, done)
go runPeekYou(store, done)
}
for err := range done {
Expand Down

0 comments on commit 7e5590b

Please sign in to comment.