Skip to content

Commit

Permalink
Update slurm memory logging
Browse files Browse the repository at this point in the history
  • Loading branch information
bbimber committed Nov 29, 2024
1 parent c33a698 commit 5f02031
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ else if (headerFound)
long requestInBytes = FileSizeFormatter.convertStringRepresentationToBytes(getConfig().getRequestMemory() + "G"); //request is always GB
if (bytes > requestInBytes)
{
info = "Job exceeded memory, max was: " + FileSizeFormatter.convertBytesToUnit(bytes, 'G') + "G";
info = "Job exceeded memory, max was: " + FileSizeFormatter.convertBytesToUnit(bytes, 'G') + "G, requested memory was: " + getConfig().getRequestMemory() + "G";

PipelineStatusFile sf = PipelineService.get().getStatusFile(job.getJobId());
if (sf != null)
Expand Down

0 comments on commit 5f02031

Please sign in to comment.