Fix:MEP auto

This commit is contained in:
Mathis 2026-06-07 16:40:46 +02:00
parent f1c0921a58
commit 69cc25b99a
2 changed files with 17 additions and 6 deletions

View file

@ -236,7 +236,7 @@ class BugReport(commands.Cog):
app.router.add_post('/bot_event', self.handle_bot_event)
self.runner = web.AppRunner(app)
await self.runner.setup()
self.site = web.TCPSite(self.runner, '127.0.0.1', 5001)
self.site = web.TCPSite(self.runner, '127.0.0.1', 5001, reuse_address=True)
await self.site.start()
kuby_logger.info("Internal Bot Webhook Server started on 127.0.0.1:5001")
except Exception as e: