Heya,

I may be missing something, but our weitForRestart() function seems to have an 
accidental line duplication:

function waitForRestart() {
  var waiting = true;
  while (waiting) {
    try {
      CouchDB.request("GET", "/");
      CouchDB.request("GET", "/");
      waiting = false;
    } catch(e) {
      // the request will fail until restart completes
    }
  }
};

If this is intentional, I'd like to know what the intent here is :)

Cheers
Jan
-- 

Reply via email to