Browse Source

async

master
zeus 4 years ago
parent
commit
d5073d0b56
  1. 4
      swarmlab-app/src/run/app.js

4
swarmlab-app/src/run/app.js

@ -507,7 +507,7 @@ function onCollection(err, collection) {
var user = resob1.res25creator
//io.in(user).emit("logdata", reslog);
//var user = 'anagnostopoulos@uniwa.gr'
(async() => {
(async(io,issend) => {
await pubClient.get(issend, function(err, object) {
if(err == null){
pubClient.set(issend, itemsProcessed, function(err, res) {
@ -516,7 +516,7 @@ function onCollection(err, collection) {
}
itemsProcessed++;
});
})(io) //await
})(io,issend) //await
});
})() //await inside no
}

Loading…
Cancel
Save