Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions mechanism.go
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,8 @@ func (m *Mechanism) Evaluate(ip string, count int) (Result, error) {
// There is no clear definition of what to do with errors on a
// redirected domain. Trying to make wise choices here.
switch err {
case nil:
break
case ErrFailedLookup:
return TempError, nil
default:
Expand Down