Skip to content
Snippets Groups Projects
Commit cf35cce6 authored by ale's avatar ale
Browse files

Panic instead of just dying with fatal error

parent 9d07df09
No related branches found
No related tags found
No related merge requests found
......@@ -262,7 +262,7 @@ func (c *Crawler) urlHandler(queue <-chan queuePair) {
case ErrRetryRequest:
Must(c.queue.Retry(wb, p, errorRetryDelay))
default:
log.Fatalf("fatal error in handling %s: %v", p.URL, err)
log.Panicf("fatal error in handling %s: %v", p.URL, err)
}
// Write the result in our database.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment