MemeDistributionCo / ComBot

A discord bot which allows the use of external plugins. Essentially a JDA extension
MIT License
2 stars 0 forks source link

Shutdown error #18

Closed xDestx closed 6 years ago

xDestx commented 6 years ago

Since the shutdown command / restart command uses a message listener, it causes errors when it shuts down because plugins still had listeners registered. Do something to stop this from happening.

xDestx commented 6 years ago

Simple solution would be to use #shutdownNow(); instead of #shutdown();, especially as plugins should have unloaded themselves before hand anyway.

xDestx commented 6 years ago

Possible fix in shutdown-fix branch, still not tested

xDestx commented 6 years ago

solved and in prod