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 downloading the milestone 1.9.0 tar.gz file (which is the latest) at the url: (https://download.eclipse.org/jdtls/milestones/1.9.0/).
The bin/jtdls.py does not contained the updated regex: matches = re.finditer(r"(?<=version\s\")(?P<major>\d+)(\.\d+\.\d+(_\d+)?)?", out)
and still has the old one: matches = re.finditer(r"(?P<major>\d+)\.\d+\.\d+", out)
Closing for now as I think the timelines are pretty accurate as to what happened. Usually, it's best to keep on a newer version of JDT-LS as there are many improvements from each release.
When downloading the milestone 1.9.0 tar.gz file (which is the latest) at the url: (https://download.eclipse.org/jdtls/milestones/1.9.0/).
The bin/jtdls.py does not contained the updated regex:
matches = re.finditer(r"(?<=version\s\")(?P<major>\d+)(\.\d+\.\d+(_\d+)?)?", out)
and still has the old one:
matches = re.finditer(r"(?P<major>\d+)\.\d+\.\d+", out)
Making the same error described in the issue of: https://github.com/eclipse-jdtls/eclipse.jdt.ls/issues/2060
The text was updated successfully, but these errors were encountered: