javadiscord / java-discord-api

A wrapper over the discord API to create bots using Java
GNU General Public License v3.0
7 stars 8 forks source link

Move `HttpClient` instantiation outside `DiscordRequestDispatcher#sendRequest` #101

Closed SquidXTV closed 4 months ago

SquidXTV commented 4 months ago

Description of the Issue

The DiscordRequestDispatcher#sendRequest currently creates a new HttpClient instance for each request instead of reusing one instance.

Expected behavior

Create a HttpClient instance on DiscordRequestDispatcher creation.