Browse Source

added comments clarifying retry logic

pull/785/head
Stephen Hess 8 years ago
parent
commit
6918d866b8
  1. 6
      controller/place.js
  2. 6
      controller/search.js

6
controller/place.js

@ -53,6 +53,12 @@ function setup( apiConfig, esclient ){
return;
}
// if execution has gotten this far then one of three things happened:
// - the request didn't time out
// - maxRetries has been hit so we're giving up
// - another error occurred
// in either case, handle the error or results
// error handler
if( err ){
if (_.isObject(err) && err.message) {

6
controller/search.js

@ -80,6 +80,12 @@ function setup( apiConfig, esclient, query ){
return;
}
// if execution has gotten this far then one of three things happened:
// - the request didn't time out
// - maxRetries has been hit so we're giving up
// - another error occurred
// in either case, handle the error or results
// error handler
if( err ){
if (_.isObject(err) && err.message) {

Loading…
Cancel
Save