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
The dotnet core buildpack tests have just been updated with PR: #610
This PR introduces a large amount of application resources (many .dll files). When pushing the test app, the request POST /v3/resource_matches can fail on AWS environments with a HTTP 504 gateway timeout. The default idle timeout is 60s which may not be enough to finish the upload. Workaround is to increase the timeout to 300s.
Can you reduce the application resources somehow? I'm not familiar with dotnet so I don't know which options we have here.
The text was updated successfully, but these errors were encountered:
@jochenehret thank you for reporting this issue. We didn't catch it on our environments, probably our default timeouts are large enough. The reason the asset is too large is because we vendored all the dependencies (by publishing an app) so that the tests can run in internetless environment. The next step from vendored would be a pre-compiled asset but that would not exercise dotnet core buildpack and would use binary buildpack. We are going to look into ways to reduce the size of the asset. For now I suggest to increase the gateway timeout.
The dotnet core buildpack tests have just been updated with PR: #610
This PR introduces a large amount of application resources (many .dll files). When pushing the test app, the request
POST /v3/resource_matches
can fail on AWS environments with a HTTP 504 gateway timeout. The default idle timeout is 60s which may not be enough to finish the upload. Workaround is to increase the timeout to 300s.Can you reduce the application resources somehow? I'm not familiar with dotnet so I don't know which options we have here.
The text was updated successfully, but these errors were encountered: