Skip to content
Snippets Groups Projects
Commit dee91bac authored by Steven Murray's avatar Steven Murray
Browse files

CASTOR-5076 "New segment information" log sometimes logs an empty string as...

CASTOR-5076 "New segment information" log sometimes logs an empty string as the value of the checksum value

Fixed.
parent 9af3a365
Branches
Tags
No related merge requests found
......@@ -397,7 +397,7 @@ BEGIN
varParams := 'copyNb='|| inSegEntry.copyNo ||' SegmentSize='|| inSegEntry.segSize
||' Compression='|| CASE inSegEntry.comprSize WHEN 0 THEN 'inf' ELSE trunc(inSegEntry.segSize*100/inSegEntry.comprSize) END
||' TPVID='|| inSegEntry.vid ||' fseq='|| inSegEntry.fseq ||' BlockId="' || varBlockId
||'" gid=' || varFGid ||' ChecksumType="'|| inSegEntry.checksum_name ||'" ChecksumValue=' || varFCksum
||'" gid=' || varFGid ||' ChecksumType="'|| inSegEntry.checksum_name ||'" ChecksumValue=' || inSegEntry.checksum
||' creationTime=' || trunc(varSegCreationTime, 6);
addSegResult(0, inReqId, 0, 'New segment information', varFid, varParams);
COMMIT;
......@@ -601,7 +601,7 @@ BEGIN
||' Compression='|| CASE inSegEntry.comprSize WHEN 0 THEN 'inf' ELSE trunc(inSegEntry.segSize*100/inSegEntry.comprSize) END
||' TPVID='|| inSegEntry.vid
||' fseq='|| inSegEntry.fseq ||' blockId="' || varBlockId ||'" gid=' || varFGid
||' ChecksumType="'|| inSegEntry.checksum_name ||'" ChecksumValue=' || varFCksum
||' ChecksumType="'|| inSegEntry.checksum_name ||'" ChecksumValue=' || inSegEntry.checksum
||' creationTime=' || trunc(varSegCreationTime, 6) ||' Repack=True';
addSegResult(0, inReqId, 0, 'New segment information', varFid, varParams);
COMMIT;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment