Skip to content
This repository has been archived by the owner on Apr 19, 2023. It is now read-only.

Commit

Permalink
fixed bug
Browse files Browse the repository at this point in the history
  • Loading branch information
iloire committed Dec 12, 2011
1 parent 007cf7d commit a9f5d7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion watchmen.js
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ function query_url(url_conf){
url_conf.attempts = 1
url_conf.down_timestamp = new Date()
}
else if (url_conf.attempts < (url_conf.retry_in || url_conf.host.retry_in).length-1){
else if (url_conf.attempts < (url_conf.retry_in || url_conf.host.retry_in).length){
url_conf.attempts++;
}

Expand Down

0 comments on commit a9f5d7a

Please sign in to comment.