From 00a16364ec159b41748e54b5d95baaf41c88486c Mon Sep 17 00:00:00 2001 From: Zevaryx Date: Thu, 9 Jun 2022 19:15:15 -0600 Subject: [PATCH] Remove prometheus config --- jarvis/__init__.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/jarvis/__init__.py b/jarvis/__init__.py index 6e2d276..71f3859 100644 --- a/jarvis/__init__.py +++ b/jarvis/__init__.py @@ -35,8 +35,6 @@ async def run() -> None: redis_host = redis_config.pop("host") redis = await aioredis.from_url(redis_host, decode_responses=True, **redis_config) - job = jconfig.prometheus.get("job", "naff") - gateway = jconfig.prometheus.get("gateway", "http://localhost:9091") jarvis = Jarvis( intents=intents, @@ -44,8 +42,6 @@ async def run() -> None: delete_unused_application_cmds=True, send_command_tracebacks=False, redis=redis, - job=job, - gateway=gateway, ) if jconfig.log_level == "DEBUG":