Skip to content

Commit

Permalink
added killTaskJEDI
Browse files Browse the repository at this point in the history
  • Loading branch information
tmaeno committed Oct 21, 2013
1 parent 643d463 commit 8148e96
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
Release Note

current
* added killTaskJEDI
* removed constraint from the brokerage so that many input jobs can go to T2
* added HIMEM to hospital
* improved the brokerage to use mintime
Expand Down
20 changes: 20 additions & 0 deletions pandaserver/test/killTaskJEDI.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import time
import sys
import optparse

import userinterface.Client as Client

aSrvID = None

from taskbuffer.OraDBProxy import DBProxy
# password
from config import panda_config

optP = optparse.OptionParser(conflict_handler="resolve")
options,args = optP.parse_args()

jediTaskID = args[0]

s,o = Client.killTask(jediTaskID)
print o

0 comments on commit 8148e96

Please sign in to comment.