Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Only fetch checksums for final gradle releases during build #2917

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on Oct 20, 2023

  1. Only fetch checksums for final gradle releases during build

    This is a follow up to eclipse-jdtls#2775
    I frequently experience build failures due to connection errors.
    
    After some debugging with wireshark, netstat and
    `-Djdk.httpclient.HttpClient.log=all` I suspect that I'm getting rate
    throttled.
    
    Somewhere between 150 and 200 requests, the connections either get
    closed by the remote or almost stall.
    
    To mitigate the issue, this excludes nightly, snapshot, rc and broken
    gradle releases. The biggest impact has cutting out RC releases:
    
    total versions: 386
    without nightly: 385
    without RCs: 173
    without broken: 172
    
    Note that this still doesn't completely fix the issue for me, but it
    helps reduce the chance for it happening.
    mfussenegger committed Oct 20, 2023
    Configuration menu
    Copy the full SHA
    282f01d View commit details
    Browse the repository at this point in the history