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
This test case asserts that an exception is thrown when EncryptedServerSideMultipartManager#complete is called twice but that's not actually what it's testing. The IllegalStateException is throw because partStream has already been consumed, replacing the variable with Arrays.stream(parts) prevents the exception.
The text was updated successfully, but these errors were encountered:
This test case asserts that an exception is thrown when
EncryptedServerSideMultipartManager#complete
is called twice but that's not actually what it's testing. TheIllegalStateException
is throw becausepartStream
has already been consumed, replacing the variable withArrays.stream(parts)
prevents the exception.The text was updated successfully, but these errors were encountered: