Skip to content

Commit

Permalink
Merge pull request #192 from tmaeno/master
Browse files Browse the repository at this point in the history
removed # of events from PFN
  • Loading branch information
tmaeno authored Dec 5, 2023
2 parents f0ddef1 + c102a32 commit 07db8bc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion PandaPkgInfo.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
release_version = "0.2.1"
release_version = "0.2.2"
3 changes: 2 additions & 1 deletion pandajedi/jediorder/JobGenerator.py
Original file line number Diff line number Diff line change
Expand Up @@ -1921,7 +1921,8 @@ def makeJobParameters(self, taskSpec, inSubChunk, outSubChunk, serialNr, paramLi
streamName = "IN"
tmpPFNs = []
for tmpLFN in tmpLFNs:
tmpPFN = taskParamMap["pfnList"][int(tmpLFN.split(":")[0])]
# remove serial number and num events
tmpPFN = taskParamMap["pfnList"][int(tmpLFN.split(":")[0])].split("^")[0]
tmpPFNs.append(tmpPFN)
tmpLFNs = tmpPFNs
# add to map
Expand Down

0 comments on commit 07db8bc

Please sign in to comment.