Skip to content

Commit

Permalink
fix: change metrics host
Browse files Browse the repository at this point in the history
  • Loading branch information
MrMissx committed Jul 14, 2024
1 parent 0dbe9ed commit 88cc20a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion anjani/internal_plugins/canonical.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ async def _setup_web_app(self):
app.add_routes([web.get("/metrics", metrics_handler)])
self._web_runner = web.AppRunner(app)
await self._web_runner.setup()
self._web_site = web.TCPSite(self._web_runner, "localhost", 9090)
self._web_site = web.TCPSite(self._web_runner, "0.0.0.0", 9090)
await self._web_site.start()

async def stop_aiohttp_server(self):
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "anjani"
version = "2.14.7"
version = "2.14.8"
description = "Telegram group management bot"
license = "GPL-3.0-or-later"
authors = [
Expand Down

0 comments on commit 88cc20a

Please sign in to comment.