MinecraftForge / ForgeGradle

Minecraft mod development framework used by Forge and FML for the gradle build system
GNU Lesser General Public License v2.1
507 stars 436 forks source link

Fix MavenArtifactDownloader deadlock. #918

Closed noeppi-noeppi closed 1 year ago

noeppi-noeppi commented 1 year ago

This fixes #886 by releasing the monitor of ACTIVE_DOWNLOADS (through Object#wait) when waiting on a concurrent download. Whenever a download finishes, all waiting threads will be notified and check whether the download they are currently waiting on has completed. If that is the case, the result is returned. If not, the thread invokes Object#wait again and waits for the next download to complete.