Skip to content
This repository has been archived by the owner on Jan 30, 2024. It is now read-only.

Commit

Permalink
Corrected % -> %s in log message in stageIn()
Browse files Browse the repository at this point in the history
  • Loading branch information
PalNilsson committed Oct 3, 2018
1 parent add11a2 commit 2e41013
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,9 @@ Process kills
- Switched to using killpg() instead of kill -9 in killOrphans(), as suggested by P. McGuigan while
debugging left processes after looping job kill (processes)

Log message fix
- Corrected % -> %s in log message in stageIn() (base)

Updates from W. Guan:

https://github.com/PanDAWMS/pilot/pull/221
Expand Down
2 changes: 1 addition & 1 deletion movers/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ def stageIn(self, source, destination, fspec):
src_fsize = fspec.filesize

if not self.shouldVerifyStageIn():
self.log("skipped stage-in verification for lfn=%" % fspec.lfn)
self.log("skipped stage-in verification for lfn=%s" % fspec.lfn)
return {'checksum': dst_checksum, 'checksum_type':dst_checksum_type, 'filesize':src_fsize}

src_checksum, src_checksum_type = fspec.get_checksum()
Expand Down

0 comments on commit 2e41013

Please sign in to comment.