Skip to content

Commit

Permalink
Update region_size.py
Browse files Browse the repository at this point in the history
fixed typo
  • Loading branch information
bschoening authored Dec 21, 2021
1 parent 316bc08 commit 4f1858f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion region_size.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

if re.search("allocation request:.*source: concurrent humongous allocation", line) is not None:
total += 1
req = re.search("allocationhttps://jiradc-gti.jpmchase.net/secure/RapidBoard.jspa?rapidView=63346 request: [0-9]+", line).group()
req = re.search("allocation request: [0-9]+", line).group()
allocations.append(int(re.search(r"[0-9]+", req).group()))

print(f"found {total} humongous objects in {log}")
Expand Down

0 comments on commit 4f1858f

Please sign in to comment.