Skip to content

Commit

Permalink
comment out useless error
Browse files Browse the repository at this point in the history
- per corentin "it's fine"
  • Loading branch information
NGTmeaty committed Nov 6, 2024
1 parent 0f44794 commit ca931c9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions internal/pkg/crawl/hq.go
Original file line number Diff line number Diff line change
Expand Up @@ -179,10 +179,10 @@ func (c *Crawl) HQConsumer() {
c.HQConsumerState = "waitingOnFeed"
URLs, err := c.HQClient.Feed(HQBatchSize, c.HQStrategy)
if err != nil {
c.Log.WithFields(c.genLogFields(err, nil, map[string]interface{}{
"batchSize": HQBatchSize,
"err": err,
})).Debug("error getting new URLs from crawl HQ")
// c.Log.WithFields(c.genLogFields(err, nil, map[string]interface{}{
// "batchSize": HQBatchSize,
// "err": err,
// })).Debug("error getting new URLs from crawl HQ")
continue
}
c.HQConsumerState = "feedCompleted"
Expand Down

0 comments on commit ca931c9

Please sign in to comment.