Browse Source

changed producer example back to 6s

pull/5/head
Matthias Goetzke 12 years ago
parent
commit
2e804cc21f
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      examples/producer.js

+ 2
- 2
examples/producer.js View File

@ -23,11 +23,11 @@ var interval = setInterval( function(){
console.log("STORED");
}
} );
}, 0);
}, 100);
//close connection
setTimeout( function(){
clearInterval(interval);
producer.close();
}, 500);
}, 6000);

Loading…
Cancel
Save