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
When egressing an artifact to S3, the following exception occurs: Microsoft.Diagnostics.Tools.Monitor.Egress.EgressException: S3 storage egress failed: S3 storage egress failed: Part number must be an integer between 1 and 10000, inclusive within DoWriteAsync. It appears that _parts.Count is 0 at this point, which is causing the exception.
Other information
As a workaround, using _parts.Count + 1 when uploading a part seems to resolve the issue (when _parts.Count is 0, this translates to uploading part 1) - more investigation is needed.
The text was updated successfully, but these errors were encountered:
Description
When egressing an artifact to S3, the following exception occurs:
Microsoft.Diagnostics.Tools.Monitor.Egress.EgressException: S3 storage egress failed: S3 storage egress failed: Part number must be an integer between 1 and 10000, inclusive
withinDoWriteAsync
. It appears that_parts.Count
is 0 at this point, which is causing the exception.Other information
As a workaround, using
_parts.Count + 1
when uploading a part seems to resolve the issue (when_parts.Count
is 0, this translates to uploading part 1) - more investigation is needed.The text was updated successfully, but these errors were encountered: