Skip to content

Commit

Permalink
Typo mentioned in the comment
Browse files Browse the repository at this point in the history
  • Loading branch information
robdy authored Dec 6, 2023
1 parent 7d0603c commit 30b0b8e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions blog/2022-01-22-message-trace-wrapper.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ do {
Start-Sleep -Seconds 1
# The loop should end when there's no more messages
# or when we reach last page
} until { $null -eq $currentMessages -or $gmtParams.Page -gt $maxPage }
} until ( $null -eq $currentMessages -or $gmtParams.Page -gt $maxPage )
```

## Lowering memory usage
Expand Down Expand Up @@ -269,4 +269,4 @@ And the output file should appear. Let's check the folder we specified:

## Conclusion

`Get-MessageTrace` doesn't support getting more than 5 million elements. We wrote a wrapper for that. Now we can get as many messages as we want.
`Get-MessageTrace` doesn't support getting more than 5 million elements. We wrote a wrapper for that. Now we can get as many messages as we want.

0 comments on commit 30b0b8e

Please sign in to comment.