Tracked down a bug in a call to MongoDB that failed to ever return. It was trying to remove an index and the call never finished.
This commit is contained in:
@@ -2,6 +2,8 @@ import { Meteor } from 'meteor/meteor';
|
||||
import { Roles } from 'meteor/alanning:roles';
|
||||
import { check } from 'meteor/check';
|
||||
|
||||
// console.log("Setting Up Users...")
|
||||
|
||||
if (Meteor.isServer) {
|
||||
Meteor.publish(null, function() {
|
||||
if(this.userId) {
|
||||
@@ -66,3 +68,5 @@ if (Meteor.isServer) {
|
||||
// },
|
||||
});
|
||||
}
|
||||
|
||||
// console.log("Users setup.")
|
||||
Reference in New Issue
Block a user