Skip to content

Commit

Permalink
1.4.58
Browse files Browse the repository at this point in the history
  • Loading branch information
tmaeno committed Mar 22, 2021
1 parent 65bd22e commit 0341385
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions pandatools/Client.py
Original file line number Diff line number Diff line change
Expand Up @@ -741,7 +741,7 @@ def getProxyKey(verbose=False):


# get JobIDs and jediTasks in a time range
def getJobIDsJediTasksInTimeRange(timeRange, dn=None, minTaskID=None, verbose=False):
def getJobIDsJediTasksInTimeRange(timeRange, dn=None, minTaskID=None, verbose=False, task_type='user'):
# instantiate curl
curl = _Curl()
curl.sslCert = _x509()
Expand All @@ -750,7 +750,8 @@ def getJobIDsJediTasksInTimeRange(timeRange, dn=None, minTaskID=None, verbose=Fa
# execute
url = baseURLSSL + '/getJediTasksInTimeRange'
data = {'timeRange': timeRange,
'fullFlag': True}
'fullFlag': True,
'task_type': task_type}
if dn is not None:
data['dn'] = dn
if minTaskID is not None:
Expand Down
2 changes: 1 addition & 1 deletion pandatools/PandaToolsPkgInfo.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
release_version = "1.4.57"
release_version = "1.4.58"

0 comments on commit 0341385

Please sign in to comment.