You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Before we increase the memory limit to 1GB from 500MB, the bot died for 2 PRs with large diffs (75MB and 180MB). The bot create a string in an early stage, then passes that large string to parseRegionTagsInPullRequest. This creates adiitional copy of the string.
I think we should reduce at least one copy of this string instance.
The text was updated successfully, but these errors were encountered:
Related to #1134
Before we increase the memory limit to 1GB from 500MB, the bot died for 2 PRs with large diffs (75MB and 180MB). The bot create a string in an early stage, then passes that large string to
parseRegionTagsInPullRequest
. This creates adiitional copy of the string.I think we should reduce at least one copy of this string instance.
The text was updated successfully, but these errors were encountered: