cloudcms-server 3.2.298 → 3.2.301

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -11,8 +11,8 @@ exports = module.exports = function()
11
11
  {
12
12
  var logger = logFactory("AWARENESS");
13
13
  var provider = null;
14
- var REAP_FREQUENCY_MS = 3000; // three seconds
15
- var REAP_MAX_AGE_MS = 5000; // five seconds
14
+ var REAP_FREQUENCY_MS = 5000; // five seconds
15
+ var REAP_MAX_AGE_MS = 120000; // two minutes
16
16
 
17
17
  var pluginPaths = ["./plugins/editorial"];
18
18
  var plugins = {};
@@ -382,6 +382,7 @@ exports = module.exports = function()
382
382
 
383
383
  if (!err && success)
384
384
  {
385
+ console.log("REAPING, channel: " + channelId + ", user: " + userId);
385
386
  io.sockets.in(channelId).emit("lockReleased", channelId, userId);
386
387
  }
387
388
 
package/package.json CHANGED
@@ -6,7 +6,7 @@
6
6
  },
7
7
  "name": "cloudcms-server",
8
8
  "description": "Cloud CMS Application Server Module",
9
- "version": "3.2.298",
9
+ "version": "3.2.301",
10
10
  "repository": {
11
11
  "type": "git",
12
12
  "url": "git://github.com/gitana/cloudcms-server.git"