Guest User

Untitled

a guest
Jul 17th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. > db.killOp
  2. function (op) {
  3. if (!op) {
  4. throw "no opNum to kill specified";
  5. }
  6. return db.$cmd.sys.killop.findOne({op:op});
  7. }
  8. > db["$cmd.sys.killop"].findOne({op:12121})
  9. { "info" : "attempting to kill op" }
Add Comment
Please, Sign In to add comment