Issue ID:
Type
Bug
Title:
FIX: Put Metadata Request for Maven may fail on Linux
Created:
7/20/2021 4:53:29 AM by Alana Tripp
Status:
Completed on 7/29/2021 12:56:05 PM
Last pulled:
7/30/2021 11:35:45 AM
Description:
In `MavenFeedHandler.cs#173`, the following line is yielding a "root element not found" error on .NET5/Docker: `var xdoc = XDocument.Load(context.Request.InputStream);` Should it should be changed to something like? `var xdoc = XDocument.Load(context.Request.GetUnlimitedInputStreamAsync());`