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

VM does not exit after upgrade from 3.7.0 to 3.8.0 #170

Closed
McBluna opened this issue Aug 10, 2024 · 4 comments
Closed

VM does not exit after upgrade from 3.7.0 to 3.8.0 #170

McBluna opened this issue Aug 10, 2024 · 4 comments
Labels
bug Something isn't working

Comments

@McBluna
Copy link

McBluna commented Aug 10, 2024

I've reduced the code to a minimum. Exit is printed to console, but VM keeps running.
Environment is Java 17.0.11 running on Windows 11.

	public static void main(String[] args) throws IOException {
		RssReader rssReader = new RssReader();
		List<Item> items = rssReader.read("https://www.tagesschau.de/infoservices/alle-meldungen-100~rss2.xml").toList();
		System.out.println(items);
		System.out.println("exit");
	}

grafik

@McBluna
Copy link
Author

McBluna commented Aug 10, 2024

Btw changing to Java 21.0.3 didn't change anything.

@McBluna
Copy link
Author

McBluna commented Aug 10, 2024

Another try but still no working

	public static void main(String[] args) throws IOException {
		RssReader reader = new RssReader();
		try (Stream<Item> rssFeed = reader.read(URL)) {
		}
		System.out.println("Exit");
	}

@w3stling w3stling added the bug Something isn't working label Aug 10, 2024
@w3stling
Copy link
Owner

Fixed by PR #171
Please try release v3.8.1

@McBluna
Copy link
Author

McBluna commented Aug 12, 2024

Sorry I wasn't at home. It's working again with 3.8.1.
Thank you so much.

@McBluna McBluna closed this as completed Aug 12, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants